import不支持“as”属性

时间:2012-09-07 15:23:16

标签: java ant build

我正在使用Apache Ant在Ubuntu虚拟机上构建内容。

当我做蚂蚁时,我收到以下错误:

Buidling failed:import does not support the "as" attribute

我拥有的java版本是1.7,而对于ant也是1.7

有任何线索吗?数百万的感谢!

1 个答案:

答案 0 :(得分:0)

确保javac是带有javac -version的1.7版本,这就是在解析as关键字而不是java JVM应用程序时遇到问题。 Ubuntu 12.10中的默认值仍为1.6,因此您需要手动安装1.7 JDK,然后通过运行sudo update-alternatives --config java将其设置为默认值。这个page描述了你可以在Ubuntu中运行的不同JVM以及如何选择一个。