1

是否可以防止 ivy 将 jar 复制到项目目录,而是生成直接引用 ivy 缓存中文件的类路径?

4

1 回答 1

1

您可以使用该<ivy:cachepath/>任务来创建您的类路径,而无需将 jar 复制到您的项目中:

 <target name="compile">

    <!-- Create a classpath reference for my compile -->
    <ivy:cachepath pathid="main.classpath"
        conf="compile"/>

    <!-- Compile using my classpath reference-->    
    <javac srcdir="${main.srcdir}"
        destdir="${main.destdir}"
        classpathref="main.classpath"/>

</target>
于 2013-07-09T18:39:59.067 回答