Skip to content

Commit

Permalink
fix fileset
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddict committed Jan 24, 2025
1 parent c864986 commit 5071a92
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,18 @@

<path id="jar.classpath">
<!-- <fileset dir="${dir.dist}/lib" includes="**/*.jar" /> -->
<fileset dir="${dir.lib}" includes="**/*.jar" />
<!-- <fileset dir="${dir.lib}" includes="**/*.jar" /> -->
<fileset dir="${dir.lib}">
<include name="**/*.jar"/>
</fileset>
<pathelement path="${dir.build}" />
</path>
<manifestclasspath property="manifest.classpath" jarfile="${dir.dist}/lib/${package.name}.jar">
<classpath refid="jar.classpath" />
</manifestclasspath>
<echo message="jar.classpath=${jar.classpath}" />

<property name="jarclasspath" refid="jar.classpath" />
<echo message="jar.classpath = ${jarclasspath}" />

<!-- compile -->
<javac srcdir="${dir.source}"
Expand Down

0 comments on commit 5071a92

Please sign in to comment.