Skip to content

Commit

Permalink
[maven-release-plugin] prepare release 3.2.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
j143 committed Feb 12, 2024
1 parent 998661f commit fdbd240
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<version>24</version>
</parent>
<groupId>org.apache.systemds</groupId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>
<artifactId>systemds</artifactId>
<packaging>jar</packaging>
<name>Apache SystemDS</name>
Expand Down Expand Up @@ -93,7 +93,7 @@

<scm>
<developerConnection>scm:git:https://github.com/apache/systemds.git</developerConnection>
<tag>HEAD</tag>
<tag>3.2.0-rc1</tag>
</scm>

<build>
Expand Down Expand Up @@ -361,12 +361,8 @@
<configuration>
<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" />
<move
file="${project.build.directory}/${project.artifactId}-${project.version}.jar"
tofile="${project.build.directory}/${project.artifactId}-${project.version}-unshaded.jar"/>
<copy 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" />

</target>
</configuration>
Expand All @@ -380,9 +376,7 @@
<configuration>
<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}/${project.artifactId}-${project.version}.jar"/>
<copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${project.build.directory}/${project.artifactId}-${project.version}.jar" />
</target>
</configuration>
<goals>
Expand All @@ -394,12 +388,8 @@
<phase>package</phase>
<configuration>
<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" />
<copy
file="${project.build.directory}/${project.artifactId}-${project.version}-perf.jar"
tofile="${project.build.directory}/SystemDS-perf.jar" />
<copy 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" />
</target>
</configuration>
<goals>
Expand Down

0 comments on commit fdbd240

Please sign in to comment.