你好我是apache ant和ivy.i的新手。最近已知的ant不支持依赖管理。所以我听说IVY,ant的依赖管理器。现在问题是,我已经将ivy依赖添加到ivy.xml文件
<ivy-module version="2.0">
<info organisation="com.mlen" module="testApp"/>
<dependencies>
<dependency org="net.sourceforge.jdatepicker" name="jdatepicker" rev="1.3.2"/>
</dependencies>
</ivy-module>
这是swing应用程序的jdatepicker。 现在问题是当我尝试访问依赖类时,它不会导入类。 ivy将依赖项下载到项目目录下的lib文件夹中。
我的build.xml文件
<project name="HelloWorld"
basedir="."
default="run">
<!-- xmlns:ivy="antlib:org.apache.ivy.ant">-->
<property name="src.dir" value="src"/>
<property name="lib.dir" value="lib"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="main-class" value="com.mlen.testApp.HelloWorld"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="resolve" xmlns:ivy="antlib:org.apache.ivy.ant">
<ivy:retrieve/>
</target>
<target name="compile" depends="resolve">
<mkdir dir="${classes.dir}"/>
<javac includeantruntime="false" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath"/>
<copy todir="${classes.dir}">
<fileset dir="${src.dir}" excludes="**/*.java"/>
</copy>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
<!--how can i get ivy to note what the class path should be?-->
<attribute name="Class-Path" value="log4j-1.2.17.jar"/>
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java fork="true" classname="${main-class}">
<classpath>
<path refid="classpath"/>
<path location="${jar.dir}/${ant.project.name}.jar"/>
</classpath>
</java>
</target>
<target name="clean-build" depends="clean,jar"/>
<target name="main" depends="clean,run"/>
</project>
最后是我的主要课程。
public class HelloWorld extends JFrame {
public HelloWorld(){
UtilDateModel model = new UtilDateModel();
JDatePanelImpl datePanel = new JDatePanelImpl(model);
JDatePickerImpl datePicker = new JDatePickerImpl(datePanel);
add(datePicker);
setSize(300, 200);
setVisible(true);
}
public static void main(String[] args) {
new HelloWorld();
}
}
为什么不导入课程。我做得对吗????
答案 0 :(得分:0)
我创建了与您相同的文件结构,ivy.xml和build.xml中没有错误,并且ant run任务运行正常。 Ivy解决了jar文件,并且ant目标包含在classpath中的右目录。我想你只是忘记将类导入HelloWorld.java
import net.sourceforge.jdatepicker.impl.UtilDateModel;
//TODO import more
为了避免这些错误,您可以使用IDE(Eclipse,Netbeans,Idea w / e),它们都支持Ant和Ivy。
如果您没有忘记导入课程。您需要更具体,找到蚂蚁目标失败的阶段。
compile
尝试回复classpath
并运行相同的蚂蚁
命令javac src/HelloWorld.java -cp ./lib/jdatepicker-1.3.2.jar
与您的类路径。run
使用java -jar ...
答案 1 :(得分:0)
Ivy是ANT 不 eclipse的依赖管理。如果你想让ivy解析Eclipse类路径,你需要安装ivy插件(参见ivyDE)
你的例子也适合我。正如@ deathangel908指出你需要正确设置包声明并从第三方罐中导入类。
├── build.xml
├── ivy.xml
└── src
└── com
└── mlen
└── testApp
└── HelloWorld.java
package com.mlen.testApp;
import javax.swing.*;
import net.sourceforge.jdatepicker.impl.*;
public class HelloWorld extends JFrame {
public HelloWorld(){
UtilDateModel model = new UtilDateModel();
JDatePanelImpl datePanel = new JDatePanelImpl(model);
JDatePickerImpl datePicker = new JDatePickerImpl(datePanel);
add(datePicker);
setSize(300, 200);
setVisible(true);
}
public static void main(String[] args) {
new HelloWorld();
}
}