[在Linux上使用ant编译时出错:错误的版本52.0,应为50.0

问题描述 投票:0回答:1

在我使用eclipse ant和Java 1.8在Windows上编译代码之前,它已经可以正常工作。

现在,我正在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来启动build.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, ]
java linux ant
1个回答
0
投票

检测到的Java版本:1.6,位于:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre

这是您的答案-您的路径设置不正确。

在这里查看:

Class file has wrong version 52.0, should be 50.0

© www.soinside.com 2019 - 2024. All rights reserved.