You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by fc...@apache.org on 2012/05/31 15:17:57 UTC

svn commit: r1344706 - /incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml

Author: fchrist
Date: Thu May 31 13:17:56 2012
New Revision: 1344706

URL: http://svn.apache.org/viewvc?rev=1344706&view=rev
Log:
Added release tag base configuration because release fails otherwise

Modified:
    incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml

Modified: incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml?rev=1344706&r1=1344705&r2=1344706&view=diff
==============================================================================
--- incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml (original)
+++ incubator/stanbol/trunk/releasing/stanbol-source-release/pom.xml Thu May 31 13:17:56 2012
@@ -40,8 +40,6 @@
     <url>http://incubator.apache.org/stanbol</url>
   </scm>
 
-    <!-- workaround find from : https://issues.apache.org/jira/browse/SLING-2164b-->
-    <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
   <build>
     <plugins>
       <plugin>
@@ -53,30 +51,39 @@
 
     <pluginManagement>
       <plugins>
-          <plugin>
-            <groupId>org.eclipse.m2e</groupId>
-            <artifactId>lifecycle-mapping</artifactId>
-            <version>1.0.0</version>
-            <configuration>
-              <lifecycleMappingMetadata>
-                <pluginExecutions>
-                  <pluginExecution>
-                    <pluginExecutionFilter>
-                      <groupId>org.apache.maven.plugins</groupId>
-                      <artifactId>maven-remote-resources-plugin</artifactId>
-                      <versionRange>[1.0,)</versionRange>
-                      <goals>
-                        <goal>bundle</goal>
-                      </goals>
-                    </pluginExecutionFilter>
-                    <action>
-                      <execute />
-                    </action>
-                  </pluginExecution>
-                </pluginExecutions>
-              </lifecycleMappingMetadata>
-            </configuration>
-          </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <configuration>
+            <tagBase>
+              https://svn.apache.org/repos/asf/incubator/stanbol/tags/
+            </tagBase>
+          </configuration>
+        </plugin>        
+        <plugin>
+          <groupId>org.eclipse.m2e</groupId>
+          <artifactId>lifecycle-mapping</artifactId>
+          <version>1.0.0</version>
+          <configuration>
+            <lifecycleMappingMetadata>
+              <pluginExecutions>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-remote-resources-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>bundle</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <execute />
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>