Skip to content

Commit

Permalink
javac; replaced classpath refid by classpathref
Browse files Browse the repository at this point in the history
ivy:retrieve: change on pattern
  • Loading branch information
Eddict committed Jan 24, 2025
1 parent 51b245e commit 98fbfb4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@
source="9">
<!-- excludesfile="${dir.lib}/src.excludes" -->
<!-- modulepath="modules" -->
<classpath refid="jar.classpath" />
<!-- <classpath refid="jar.classpath" /> -->
<classpathref="jar.classpath" />
<modulepath path="/usr/share/openjfx/lib" />
<!-- <classpath refid="jar.classpath" /> -->
<!-- <modulepath path="${jfx.path}" /> -->
Expand Down Expand Up @@ -762,7 +763,7 @@
<target name="clean" description="Delete build artifacts">
<delete dir="${dir.dist}" />
<delete dir="${dir.build}" />
<delete dir="${lib.dir}" />
<!-- <delete dir="${lib.dir}" /> -->
</target>

<target name="clean-all" depends="clean" description="clean ivy cache">
Expand All @@ -778,7 +779,8 @@

<!-- new target to get dependencies, after first obtaining Ivy -->
<target name="get-dependencies" depends="init-ivy">
<ivy:retrieve conf="binaries" pattern="lib/[conf]/[artifact](-[classifier]).[ext]" />
<!-- <ivy:retrieve conf="binaries" pattern="lib/[conf]/[artifact](-[classifier]).[ext]" /> -->
<ivy:retrieve conf="binaries" pattern="${dir.lib}/[conf]/[artifact]-[revision].[ext]" />
</target>

<target name="download-customs" description="Download JARs from sustom sources">
Expand Down

0 comments on commit 98fbfb4

Please sign in to comment.