You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2008/10/15 23:11:09 UTC

svn commit: r705044 - /wicket/branches/wicket-1.3.x/pom.xml

Author: dashorst
Date: Wed Oct 15 14:11:09 2008
New Revision: 705044

URL: http://svn.apache.org/viewvc?rev=705044&view=rev
Log:
moved distmgt section for snapshot releases to the bamboo profiles, interfered with running release script

Modified:
    wicket/branches/wicket-1.3.x/pom.xml

Modified: wicket/branches/wicket-1.3.x/pom.xml
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/pom.xml?rev=705044&r1=705043&r2=705044&view=diff
==============================================================================
--- wicket/branches/wicket-1.3.x/pom.xml (original)
+++ wicket/branches/wicket-1.3.x/pom.xml Wed Oct 15 14:11:09 2008
@@ -29,14 +29,6 @@
 	<name>Wicket Parent</name>
 	<description>Wicket is a Java-based open source component web application framework.</description>
 
-	<distributionManagement>
-	  <snapshotRepository>
-	    <id>repo</id>
-	    <name>Local Bamboo/Tomcat repository</name>
-	    <url>file:/home/wicket/tomcat/webapps/maven/repository/</url>
-	    <uniqueVersion>false</uniqueVersion>
-	  </snapshotRepository>
-	</distributionManagement>			
 	<profiles>
 		<profile>
 			<id>jdk-1.4</id>
@@ -108,51 +100,67 @@
 					</plugin>
 				</plugins>
 			</build>
+			<distributionManagement>
+				<snapshotRepository>
+					<id>repo</id>
+					<name>Local Bamboo/Tomcat repository</name>
+					<url>file:/home/wicket/tomcat/webapps/maven/repository/</url>
+					<uniqueVersion>false</uniqueVersion>
+				</snapshotRepository>
+			</distributionManagement>			
+		</profile>
+		<profile>
+			<id>bamboo-jdk-1.5</id>
+			<activation>
+				<activeByDefault>false</activeByDefault>
+			</activation>
+			<modules>
+				<module>jdk-1.5</module>
+			</modules>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-assembly-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+<!--
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-gpg-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+-->
+					<plugin>
+						<artifactId>maven-remote-resources-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-javadoc-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-source-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<inherited>true</inherited>
+					</plugin>
+				</plugins>
+			</build>
+			<distributionManagement>
+				<snapshotRepository>
+					<id>repo</id>
+					<name>Local Bamboo/Tomcat repository</name>
+					<url>file:/home/wicket/tomcat/webapps/maven/repository/</url>
+					<uniqueVersion>false</uniqueVersion>
+				</snapshotRepository>
+			</distributionManagement>			
 		</profile>
-				<profile>
-					<id>bamboo-jdk-1.5</id>
-					<activation>
-						<activeByDefault>false</activeByDefault>
-					</activation>
-					<modules>
-						<module>jdk-1.5</module>
-					</modules>
-					<build>
-						<plugins>
-							<plugin>
-								<groupId>org.apache.maven.plugins</groupId>
-								<artifactId>maven-assembly-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-		<!--
-							<plugin>
-								<groupId>org.apache.maven.plugins</groupId>
-								<artifactId>maven-gpg-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-		-->
-							<plugin>
-								<artifactId>maven-remote-resources-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-							<plugin>
-								<groupId>org.apache.maven.plugins</groupId>
-								<artifactId>maven-javadoc-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-							<plugin>
-								<groupId>org.apache.maven.plugins</groupId>
-								<artifactId>maven-source-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-							<plugin>
-								<groupId>org.apache.maven.plugins</groupId>
-								<artifactId>maven-surefire-plugin</artifactId>
-								<inherited>true</inherited>
-							</plugin>
-						</plugins>
-					</build>
-				</profile>
 		<profile>
 			<id>release</id>
 			<activation>