Change naming of tools jar to support the classifier tag of maven.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1590823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2014-04-28 22:04:42 +00:00
parent ccebfd5cf4
commit 67b76171aa
2 changed files with 4 additions and 4 deletions

View File

@ -440,7 +440,7 @@
<phase>package</phase>
<configuration>
<target>
<jar destfile="${project.build.directory}/${project.artifactId}-tools-${project.version}.jar">
<jar destfile="${project.build.directory}/${project.artifactId}-${project.version}-tools.jar">
<metainf dir="${basedir}" includes="NOTICE.txt,LICENSE.txt" />
<manifest>
<attribute name="Specification-Title" value="${project.name} Tools" />
@ -463,7 +463,7 @@
</execution>
</executions>
</plugin>
<!-- Attaches the commons-math3-tools JAR to the Maven lifecycle
<!-- Attaches the commons-math3 tools JAR to the Maven lifecycle
to ensure they will be signed and deployed as normal -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
@ -479,7 +479,7 @@
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-tools-${project.version}.jar</file>
<file>${project.build.directory}/${project.artifactId}-${project.version}-tools.jar</file>
<type>jar</type>
<classifier>tools</classifier>
</artifact>

View File

@ -157,7 +157,7 @@ Users are encouraged to upgrade to this version as this release not
in favor of corresponding methods "ArithmeticUtils#pow(..., int)".
</action>
<action dev="erans" type="fix" issue="MATH-976">
Create additional artifact "commons-math3-tools-x.y.z.jar" as part of the
Create additional artifact "commons-math3-x.y.z-tools.jar" as part of the
release process. This artifact contains useful tools, e.g. for performance testing.
</action>
<action dev="erans" type="fix" issue="MATH-990">