До того, как я скомпилировал свой код на Windows, используя eclipse ant и java 1.8, он полностью работал.
Теперь я использую компиляцию на Linux. Я обязательно скачал jdk 1.8 и ant.
javac -version
javac 1.8.0_91
java -version
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode)
ant -v
Apache Ant version 1.7.1 compiled on April 26 2010
Однако, когда я запускаю ant, чтобы запустить мою сборку. xml, она все равно не справляется с тем, что кажется неправильным javac. Что-то еще мне нужно установить?
ant
Buildfile: build.xml
compileBuildDir:
[javac] Compiling 12 source files to /build
[javac] Model.java:19: cannot access DBObject
[javac] bad class file: Utilities.jar(DBObject.class)]
[javac] class file has wrong version 52.0, should be 50.0
[javac] Please remove or make sure it appears in the correct subdirectory of the classpath.
[javac] import DBObject;
[javac]
BUILD FAILED
/build.xml:173: Compile failed; see the compiler error output for details.
Когда я делаю муравей -v
ant -v
Apache Ant version 1.7.1 compiled on April 26 2010
Buildfile: build.xml
Detected Java version: 1.6 in: /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre
Detected OS: Linux
parsing buildfile /build.xml with URI = file:/test/build.xml
Project base dir set to: /myProject
[antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
Build sequence for target(s) `packageApplication' is [compileBuildDir, packageApplication]
Complete build sequence is [compileBuildDir, packageApplication, reports, cleanTmpDir, copyToTmp, copyToTmpplot, ]