You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/05/14 19:29:46 UTC

svn commit: r1831586 - /commons/proper/commons-parent/trunk/pom.xml

Author: ggregory
Date: Mon May 14 19:29:45 2018
New Revision: 1831586

URL: http://svn.apache.org/viewvc?rev=1831586&view=rev
Log:
Add new property: The Commons Component root id is used on the distribution server, for example:
   - use dbcp instead of dbcp2 
   - use collections instead of collections4
   - use lang instead of lang3 

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1831586&r1=1831585&r2=1831586&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Mon May 14 19:29:45 2018
@@ -1841,6 +1841,13 @@
 
     <!-- Commons Component Id -->
     <commons.componentid>${project.artifactId}</commons.componentid>
+    
+    <!-- The Commons Component root id is used on the distribution server, for example:
+         - use dbcp instead of dbcp2 
+         - use collections instead of collections4
+         - use lang instead of lang3 
+    -->
+    <commons.componentrootid>${project.artifactId}</commons.componentrootid>
 
     <!-- Configuration properties for the OSGi maven-bundle-plugin -->
     <commons.osgi.symbolicName>org.apache.commons.${commons.componentid}</commons.osgi.symbolicName>