无法解决 pom.xml 中的未知版本错误

Could not resolve unknown-version error in pom.xml

我是 Maven 项目的新手。我复制了一些工作的 Maven 项目并在编译代码时 运行 As -> Maven Install ..
我收到以下未知版本错误:

The project com.test.abcprocess:ui-test:[unknown-version] (C:\XYZ\GIT_Eclipse\test\pom.xml) has 1 error
[ERROR] Non-resolvable parent POM for com.test.abcprocess:ui-test:[unknown-version]: Failure to find com.test.abcprocess:abc-acceptance-test:pom:4.0-SNAPSHOT in https://xyz.123.com/artifactory/bx-test was cached in the local repository, resolution will not be reattempted until the update interval of snapshots has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 5, column 10 -> [Help 2]

这是pom.xml的一部分:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.test.abcprocess</groupId>
        <artifactId>abcprocess-acceptance-test</artifactId>
        <version>4.0-SNAPSHOT</version>
    </parent>
    <artifactId>ui-test</artifactId>
    <name>Functional Module :: ui-test - ${project.version}</name>    
    <dependencies>    
        <dependency>
            <groupId>com.oracle.jdbc</groupId>
            <artifactId>ojdbc7</artifactId>
        </dependency>   
        <dependency>
            <groupId>com.oneleo.test</groupId>
            <artifactId>cucumber-support-plugin</artifactId>
            <version>1.1</version>
        </dependency>

请帮忙

您复制了maven项目的一部分。应该有另一个 groupid :: com.test.abcprocess

的项目

同时复制该项目和所有父 POM 的层次结构。这应该可以解决这个问题。