Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/maven/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/objective-c/27.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
找不到com.oracle.state management:state management父级:pom:1.0.0-SNAPSHOT_Oracle_Maven_Weblogic - Fatal编程技术网

找不到com.oracle.state management:state management父级:pom:1.0.0-SNAPSHOT

找不到com.oracle.state management:state management父级:pom:1.0.0-SNAPSHOT,oracle,maven,weblogic,Oracle,Maven,Weblogic,我不记得是什么导致了这个问题。当我尝试运行mvn clean install时,我得到以下输出: mvn clean install [INFO] Scanning for projects... [INFO] [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 [INFO] [INFO]

我不记得是什么导致了这个问题。当我尝试运行
mvn clean install
时,我得到以下输出:

mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building search Maven Webapp 1.0
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.slf4j:slf4j-api:jar:12.1.2 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.895 s
[INFO] Finished at: 2014-05-29T21:55:34+02:00
[INFO] Final Memory: 6M/154M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project search: Could not resolve dependencies for project com.ws:search:war:1.0: Failed to collect dependencies at com.oracle.weblogic:weblogic-server-pom:pom:12.1.2-0-0 -> com.oracle.weblogic:com.oracle.state-management.e
xecutor-internal-api_12.1.2:jar:12.1.2: Failed to read artifact descriptor for com.oracle.weblogic:com.oracle.state-management.executor-internal-api_12.1.2:jar:12.1.2: Failure to find com.oracle.state-management:state-management-parent:pom:1.0.0-SNAPSHOT in http://10.68
.20.32:8081/artifactory/libs-snapshot was cached in the local repository, resolution will not be reattempted until the update interval of snapshots has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
查找
com.oracle.state management.executor-internal-api_12.1.2:jar:12.1.2
(请注意版本:12.1.2)的尝试失败,因为它源于依赖项
com.oracle.state management.executor-internal-api_12.1.2
(也是版本12.1.2),而此依赖项的pom具有以下部分:

<parent>
    <artifactId>state-management-parent</artifactId>
    <groupId>com.oracle.state-management</groupId>
    <version>1.0.0-SNAPSHOT</version>
    <relativePath>../../parent/pom.xml</relativePath>
</parent>
我这样引用weblogic的依赖关系

<dependency>
    <groupId>com.oracle.weblogic</groupId>
    <artifactId>weblogic-server-pom</artifactId>
    <version>12.1.2-0-0</version>
    <type>pom</type>
    <scope>provided</scope>
</dependency>

com.oracle.weblogic
weblogic服务器pom
12.1.2-0-0
聚甲醛
假如

我怎样才能解决这个问题呢?

出于某种离奇的原因,weblogic的依赖性

<dependency>
    <groupId>com.oracle.weblogic</groupId>
    <artifactId>weblogic-server-pom</artifactId>
    <version>12.1.2-0-0</version>
    <type>pom</type>
    <scope>provided</scope>
</dependency>

com.oracle.weblogic
weblogic服务器pom
12.1.2-0-0
聚甲醛
假如
它的依赖项具有以下版本

<dependency>
    <groupId>com.oracle.weblogic</groupId>
    <artifactId>weblogic</artifactId>
    <version>[12.1.2,12.1.3)</version>
</dependency>

com.oracle.weblogic
应用服务器
[12.1.2,12.1.3)
为了解决这个问题,我将所有出现的
[12.1.2,12.1.3)
替换为
12.1.2-0-0
,现在我可以
再次安装我的项目

如果有人告诉我为什么要以这种方式生成POM,我将不胜感激

<dependency>
    <groupId>com.oracle.weblogic</groupId>
    <artifactId>weblogic</artifactId>
    <version>[12.1.2,12.1.3)</version>
</dependency>