You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2010/05/24 00:53:32 UTC

svn commit: r947515 - in /uima/build/trunk/parent-poms: parent-pom-annotator/pom.xml parent-pom-distr/pom.xml parent-pom-ibm-notice/pom.xml parent-pom-single-project/pom.xml parent-pom-top/pom.xml

Author: schor
Date: Sun May 23 22:53:32 2010
New Revision: 947515

URL: http://svn.apache.org/viewvc?rev=947515&view=rev
Log:
[UIMA-1790] add distributionManagement element to parents that will be one level above poms that may do site documentation.  Maven (by convention) will set the child poms' urls to the <url>/child-pom's-artifactId, so their webpage contributions will be isolated.

Modified:
    uima/build/trunk/parent-poms/parent-pom-annotator/pom.xml
    uima/build/trunk/parent-poms/parent-pom-distr/pom.xml
    uima/build/trunk/parent-poms/parent-pom-ibm-notice/pom.xml
    uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml
    uima/build/trunk/parent-poms/parent-pom-top/pom.xml

Modified: uima/build/trunk/parent-poms/parent-pom-annotator/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-annotator/pom.xml?rev=947515&r1=947514&r2=947515&view=diff
==============================================================================
--- uima/build/trunk/parent-poms/parent-pom-annotator/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-annotator/pom.xml Sun May 23 22:53:32 2010
@@ -69,6 +69,15 @@
     </url>
   </scm>
   
+  <!-- for children POMs maven automatically adds their artifactId to the URL below -->
+  <distributionManagement>
+    <site>
+      <id>uima-website</id>
+      <name>UIMA Website</name>
+      <url>${uimaWebsiteDistributionUrl}</url> <!-- set this var in your settings.xml -->
+    </site>  
+  </distributionManagement>
+   
   <properties>
     <uimaScmRoot>build</uimaScmRoot>
     <uimaScmProject>parent-poms/${project.artifactId}</uimaScmProject>

Modified: uima/build/trunk/parent-poms/parent-pom-distr/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-distr/pom.xml?rev=947515&r1=947514&r2=947515&view=diff
==============================================================================
--- uima/build/trunk/parent-poms/parent-pom-distr/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-distr/pom.xml Sun May 23 22:53:32 2010
@@ -60,6 +60,15 @@
       http://svn.apache.org/viewvc/uima/${uimaScmRoot}/trunk/${uimaScmProject}
     </url>
   </scm>
+
+  <!-- for children POMs maven automatically adds their artifactId to the URL below -->
+  <distributionManagement>
+    <site>
+      <id>uima-website</id>
+      <name>UIMA Website</name>
+      <url>${uimaWebsiteDistributionUrl}</url> <!-- set this var in your settings.xml -->
+    </site>  
+  </distributionManagement>
   
   <properties>
     <uimaScmRoot>build</uimaScmRoot>

Modified: uima/build/trunk/parent-poms/parent-pom-ibm-notice/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-ibm-notice/pom.xml?rev=947515&r1=947514&r2=947515&view=diff
==============================================================================
--- uima/build/trunk/parent-poms/parent-pom-ibm-notice/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-ibm-notice/pom.xml Sun May 23 22:53:32 2010
@@ -59,6 +59,15 @@
       http://svn.apache.org/viewvc/uima/${uimaScmRoot}/trunk/${uimaScmProject}
     </url>
   </scm>
+
+  <!-- for children POMs maven automatically adds their artifactId to the URL below -->
+  <distributionManagement>
+    <site>
+      <id>uima-website</id>
+      <name>UIMA Website</name>
+      <url>${uimaWebsiteDistributionUrl}</url> <!-- set this var in your settings.xml -->
+    </site>  
+  </distributionManagement>
   
   <properties>
     <uimaScmRoot>build</uimaScmRoot>

Modified: uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml?rev=947515&r1=947514&r2=947515&view=diff
==============================================================================
--- uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml Sun May 23 22:53:32 2010
@@ -84,6 +84,15 @@
     </url>
   </scm>
   
+  <!-- for children POMs maven automatically adds their artifactId to the URL below -->
+  <distributionManagement>
+    <site>
+      <id>uima-website</id>
+      <name>UIMA Website</name>
+      <url>${uimaWebsiteDistributionUrl}</url> <!-- set this var in your settings.xml -->
+    </site>  
+  </distributionManagement>
+  
   <properties>
     <uimaScmRoot>build</uimaScmRoot>
     <uimaScmProject>parent-poms/${project.artifactId}</uimaScmProject>

Modified: uima/build/trunk/parent-poms/parent-pom-top/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-top/pom.xml?rev=947515&r1=947514&r2=947515&view=diff
==============================================================================
--- uima/build/trunk/parent-poms/parent-pom-top/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-top/pom.xml Sun May 23 22:53:32 2010
@@ -147,6 +147,14 @@
          https://repository.apache.org/service/local/staging/deploy/maven2
        and for snapshots:
          https://repository.apache.org/content/repositories/snapshots -->
+  <!-- for children POMs maven automatically adds their artifactId to the URL below -->
+  <distributionManagement>
+    <site>
+      <id>uima-website</id>
+      <name>UIMA Website</name>
+      <url>${uimaWebsiteDistributionUrl}</url> <!-- set this var in your settings.xml -->
+    </site>  
+  </distributionManagement>
   
   <properties>
     <uimaWebsiteUrl>http://uima.apache.org</uimaWebsiteUrl>