Skip to content

Commit

Permalink
Addressing build issue by changing antrun task to target (#10777)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdipisa authored Jan 27, 2025
1 parent c09ce0a commit 59fa0f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions binary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@
<id>get-untar-jre-copy-db</id>
<phase>package</phase>
<configuration>
<tasks>
<target>
<echo message="Downloading JRE..." />
<get src="https://www.dropbox.com/scl/fi/1joi5d3ol2zeex5cle2tg/jdk_11_0_23.tar.gz?rlkey=4vsmejq23xkpctsw6qifs6of6&amp;st=k4xtzt68&amp;dl=1" dest="${project.build.directory}/jre.tar.gz" />
<echo message="Untar JRE..." />
<gunzip src="${project.build.directory}/jre.tar.gz" dest="${project.build.directory}/jre.tar" />
<untar src="${project.build.directory}/jre.tar" dest="${project.build.directory}/jre" />
</tasks>
</target>
</configuration>
<goals>
<goal>run</goal>
Expand All @@ -130,11 +130,11 @@
<phase>package</phase>
<configuration>
<!-- remove some unwanted dependencies that get pulled over -->
<tasks>
<target>
<delete>
<fileset dir="${project.build.directory}/dependency" includes="servlet-api-*.jar,core*.jar" />
</delete>
</tasks>
</target>
</configuration>
<goals>
<goal>run</goal>
Expand Down

0 comments on commit 59fa0f4

Please sign in to comment.