Skip to content

Commit

Permalink
rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Jul 19, 2023
1 parent 3f50dfc commit 771f72f
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,17 @@
<id>copy-Sysds</id>
<phase>package</phase>
<configuration>
<target name="copy and rename JAR">
<target name="copy and rename JAR files">
<!-- https://ant.apache.org/manual/Tasks -->
<copy
file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar"
tofile="${project.build.directory}/SystemDS.jar" />
file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar"
tofile="${project.build.directory}/SystemDS.jar" />
<move
file="${project.build.directory}/${project.artifactId}-${project.version}.jar"
tofile="${project.build.directory}/${project.artifactId}-${project.version}-unshaded.jar"/>
<move
file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar"
tofile="${project.build.directory}/${project.artifactId}-${project.version}.jar"/>
</target>
</configuration>
<goals>
Expand All @@ -354,13 +361,13 @@
<id>copy-testJar</id>
<phase>package</phase>
<configuration>
<target name="copy and rename test Jar" unless="maven.test.skip">
<target name="copy and rename test JAR" unless="maven.test.skip">
<copy
file="${project.build.directory}/${project.artifactId}-${project.version}-tests.jar"
tofile="${project.build.directory}/SystemDS-tests.jar" />
file="${project.build.directory}/${project.artifactId}-${project.version}-tests.jar"
tofile="${project.build.directory}/SystemDS-tests.jar" />
<copy
file="${project.build.directory}/${project.artifactId}-${project.version}-perf.jar"
tofile="${project.build.directory}/SystemDS-perf.jar" />
file="${project.build.directory}/${project.artifactId}-${project.version}-perf.jar"
tofile="${project.build.directory}/SystemDS-perf.jar" />
</target>
</configuration>
<goals>
Expand Down

0 comments on commit 771f72f

Please sign in to comment.