You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2014/04/29 00:04:43 UTC

svn commit: r1590823 - in /commons/proper/math/trunk: pom.xml src/changes/changes.xml

Author: tn
Date: Mon Apr 28 22:04:42 2014
New Revision: 1590823

URL: http://svn.apache.org/r1590823
Log:
Change naming of tools jar to support the classifier tag of maven.

Modified:
    commons/proper/math/trunk/pom.xml
    commons/proper/math/trunk/src/changes/changes.xml

Modified: commons/proper/math/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=1590823&r1=1590822&r2=1590823&view=diff
==============================================================================
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Mon Apr 28 22:04:42 2014
@@ -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>

Modified: commons/proper/math/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/changes/changes.xml?rev=1590823&r1=1590822&r2=1590823&view=diff
==============================================================================
--- commons/proper/math/trunk/src/changes/changes.xml (original)
+++ commons/proper/math/trunk/src/changes/changes.xml Mon Apr 28 22:04:42 2014
@@ -157,7 +157,7 @@ Users are encouraged to upgrade to this 
         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">