org.mule.module.client.MuleClient未找到编译错误

时间:2015-09-18 21:35:30

标签: compiler-errors mule anypoint-studio

我有一个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>

这不起作用。我搜索任何想法无济于事。任何想法我需要做什么或看下一步?

2 个答案:

答案 0 :(得分:3)

好像你没有&#34; org.mule.module.client&#34;关于你的maven依赖。

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

答案 1 :(得分:0)

尝试从POM文件中排除依赖项,然后从此处http://mvnrepository.com/artifact/org.mule/mule-core/3.7.0下载所需的JAR文件。不要忘记将其添加到构建路径中。