gpt4 book ai didi

compiler-errors - 找不到org.mule.module.client.MuleClient编译错误

转载 作者:行者123 更新时间:2023-12-02 10:50:26 25 4
gpt4 key购买 nike

我有一个Mule项目,它会产生以下编译错误:

    -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /G:/git/edx-client-service/edx_client/src/test/java/test/RestTestBase.java:[21,30] package org.mule.module.client does not exist
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.633 s
[INFO] Finished at: 2015-09-18T15:23:08-06:00
[INFO] Final Memory: 37M/88M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:testCompile (default-testCompile) on project edx_client: Compilation failure
[ERROR] /G:/git/edx-client-service/edx_client/src/test/java/test/RestTestBase.java:[21,30] package org.mule.module.client does not exist

我试图在我的pom.xml文件中排除测试包来解决此问题:
           <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/src/test/*</exclude>
</excludes>
</configuration>
</plugin>

这是行不通的。我用谷歌搜索没有任何想法。有什么想法我需要做什么或接下来要看吗?

最佳答案

看来您的Maven依赖项上没有“org.mule.module.client”。

<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-client</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>

关于compiler-errors - 找不到org.mule.module.client.MuleClient编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32661396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com