Ant构建脚本/ eclipse不会使用已弃用的Jars进行编译

时间:2013-07-08 17:14:06

标签: java eclipse ant build jodconverter

我已经下载了这个名为JODConverter的库,已经停止使用https://code.google.com/p/jodconverter/,我试图将它包含在我的Eclipse Java项目中。我已经右键单击了项目并将所需的jar添加到构建路径中,并且我运行了一个独立的类来测试库,它工作正常。目前我正在尝试从我的项目中的这些罐子中运行一些代码。我使用用ant编写的自定义构建脚本,我正在为我正在尝试使用的类获取以下输出:

error: package org.artofsolving.jodconverter does not exist
    [javac] import org.artofsolving.jodconverter.OfficeDocumentConverter;

error: cannot find symbol
    [javac]          OfficeManager officeManager = new DefaultOfficeManagerConfiguration().setTaskExecutionTimeout(300000L).buildOfficeManager();

[javac]   symbol:   class OfficeManager
    [javac]   location: class XLSXConverter

 [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 14 errors

我仍然是蚂蚁/包括罐子的初学者,如果这就是问题,我不确定如何解决这个问题。任何帮助/建议将不胜感激

0 个答案:

没有答案