gpt4 book ai didi

java - 在 ant build.xml 中包含 Jar

转载 作者:行者123 更新时间:2023-12-01 11:58:12 27 4
gpt4 key购买 nike

我正在尝试使用 build.xml 脚本编译我的项目。目前它看起来像这样:

<?xml version="1.0"?>
<project name="vml" default="main" basedir=".">
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />
<property name="build.dir" location="bin" />
<property name="libs.dir" location="libs" />
<property name="dist.dir" location="build/jar" />
<property name="docs.dir" location="build/docs" />

<!-- Deletes the existing build, docs and dist directory-->
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${docs.dir}" />
<delete dir="${dist.dir}" />
</target>

<!-- Creates the build, docs and dist directory-->
<target name="makedir">
<mkdir dir="${build.dir}" />
<mkdir dir="${docs.dir}" />
<mkdir dir="${dist.dir}" />
</target>

<!-- Compiles the java code (including the usage of library for JUnit -->
<target name="compile" depends="clean, makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}">
</javac>

</target>

<!-- Creates Javadoc -->
<target name="docs" depends="compile">
<javadoc packagenames="src" sourcepath="${src.dir}" destdir="${docs.dir}">
<!-- Define which files / directory should get included, we include all -->
<fileset dir="${src.dir}">
<include name="**" />
</fileset>
</javadoc>
</target>

<!--Creates the deployable jar file -->
<target name="jar" depends="compile">
<jar destfile="${dist.dir}\test.jar" basedir="${build.dir}">
<manifest>
<attribute name="Main-Class" value="vml.coding.test.Test" />
</manifest>
</jar>
</target>

<target name="main" depends="compile, jar, docs">
<description>Main target</description>
</target>

</project>

它不起作用,因为我使用了几个外部库 (.jar),所以我收到此编译错误:

error: package com.opencsv does not exist
[javac] import com.opencsv.CSVReader;

这是我的文件夹层次结构:

project
|
|-src
|-build
|-libs

这些 jar 位于库内。

我尝试将其添加到 build.xml 中,但没有成功:

    ...
<path id="build-classpath">
<fileset dir="${libs.dir}">
<include name="*.jar"/>
</fileset>
</path>
...
<target name="jar" depends="compile">
<jar destfile="${dist.dir}\test.jar" basedir="${build.dir}">
<manifest>
<attribute name="Main-Class" value="vml.coding.test.Test" />
<attribute name="Build-Path" value="${build-classpath}" />
</manifest>
</jar>
</target>

我该如何解决这个问题?

最佳答案

问题发生在您的编译目标而不是 jar 目标中。

您是对的,您需要使用 path 将 jar 添加到类路径,但是您需要在编译目标 javac 任务中引用它:

<javac srcdir="${src.dir}" destdir="${build.dir}" 
classpathref="build-classpath"
/>

您可能还想包含您的构建目录,以便类可以相互引用?

<path id="build-classpath">
<fileset dir="${libs.dir}">
<include name="*.jar"/>
</fileset>
<pathelement path= "${build.dir}"/>
</path>

然后,当您尝试执行 jar 时,您需要确保这些 jar 再次位于您的类路径中。

关于java - 在 ant build.xml 中包含 Jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28200626/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com