如何修复詹金斯中的"error: cannot find symbol"?



我正在使用Jenkins + Netbeans (Java code) + GitContinuous Integration环境中工作。我正在尝试将Jacoco插件与 Ant 任务一起使用以进行代码覆盖。我有一个版本,与默认版本(build.xml)不同。我创建了另一个,但是当我运行"编译测试"ant任务时,这就是我得到的:

compile-tests:<br>
[javac] Compiling 1 source file to C:CITestAppbinclasses-tests</br>
[javac] C:CITestApptestcitestapplogicCalculatorTest.java:22: error: cannot find symbol</br>
[javac]     private Calculate calculator;
[javac]             ^
[javac]   symbol:   class Calculate
[javac]   location: class CalculatorTest
[javac] C:CITestApptestcitestapplogicCalculatorTest.java:37: error: cannot find symbol
[javac]         calculator = new Calculate();
[javac]                          ^
[javac]   symbol:   class Calculate
[javac]   location: class CalculatorTest
[javac] 2 errors
BUILD FAILED
C:CITestAppjacocorep.xml:29: Compile failed; see the compiler error output for details.

我怎么知道这个错误是什么意思:

"错误:找不到符号"

这些是我创建的 ant build 中的目标,我在其中定义了将要编译的测试的类路径:

<target name="compile"> <mkdir dir="${classes.dir}"/> <javac fork="true" debug="true" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" includeantruntime="false" /> </target>>

<target name="compile-tests" depends="compile"> <mkdir dir="${classes.dir}-tests"/> <javac fork="true" debug="true" srcdir="${test.dir}" destdir="${classes.dir}-tests" classpathref="classpath" includeantruntime="false"> <classpath> <pathelement location="${lib.dir}/junit-4.10.jar"/> <path refid="application"/> </classpath> </javac> </target>

我有另一个构建(这是默认的项目构建.xml),我在其中编译和执行项目中的单元测试。我在项目根目录中有这两个 ant 构建,所以我真的不知道类路径是否正确。

我在一开始就这样定义了类路径:

<path id="classpath"> <fileset dir="${lib.dir}" includes="org/osgi/**/*.jar"/> </path> <path id="application" location="{classes.dir}"/>

相关内容

  • 没有找到相关文章

最新更新