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 2007/03/13 13:48:29 UTC

svn commit: r517672 - /incubator/wicket/branches/wicket-1.x/pom.xml

Author: dashorst
Date: Tue Mar 13 05:48:29 2007
New Revision: 517672

URL: http://svn.apache.org/viewvc?view=rev&rev=517672
Log:
Added JDK-1.4 profile to select only jdk-1.4 module when run using jdk-1.4. Default will build everything.

Modified:
    incubator/wicket/branches/wicket-1.x/pom.xml

Modified: incubator/wicket/branches/wicket-1.x/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/pom.xml?view=diff&rev=517672&r1=517671&r2=517672
==============================================================================
--- incubator/wicket/branches/wicket-1.x/pom.xml (original)
+++ incubator/wicket/branches/wicket-1.x/pom.xml Tue Mar 13 05:48:29 2007
@@ -29,11 +29,29 @@
 	<name>Wicket Parent</name>
 	<description>Wicket is a Java-based open source component web application framework.</description>
 
-	<modules>
-		<module>jdk-1.4</module>
-		<module>jdk-1.5</module>
-		<module>testing/wicket-threadtest</module>
-	</modules>
+	<profiles>
+		<profile>
+			<id>jdk-1.4</id>
+			<activation>
+				<activeByDefault>false</activeByDefault>
+				<jdk>1.4</jdk>
+			</activation>
+			<modules>
+				<module>jdk-1.4</module>
+			</modules>
+		</profile>
+		<profile>
+			<id>all</id>
+			<activation>
+				<activeByDefault>true</activeByDefault>
+			</activation>
+			<modules>
+				<module>jdk-1.4</module>
+				<module>jdk-1.5</module>
+				<module>testing/wicket-threadtest</module>
+			</modules>
+		</profile>
+	</profiles>
 
 	<url>http://incubator.apache.org/wicket/${project.artifactId}</url>
 	<inceptionYear>2004</inceptionYear>
@@ -456,6 +474,7 @@
 				<reportSets>
 					<reportSet>
 						<reports>
+							<report>index</report>
 							<report>dependencies</report>
 							<report>mailing-list</report>
 							<report>issue-tracking</report>
@@ -470,6 +489,7 @@
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-javadoc-plugin</artifactId>
 			</plugin>
+<!--
 			<plugin>
 				<inherited>true</inherited>
 				<groupId>org.apache.maven.plugins</groupId>
@@ -482,20 +502,21 @@
 					</reportSet>
 				</reportSets>
 			</plugin>
+-->
 		</plugins>
 	</reporting>
 	<distributionManagement>
 		<site>
-			<id>wicket-site</id>
-			<url>scpexe://people.apache.org/${project.artifactId}</url>
+			<id>people.apache.org</id>
+			<url>scpexe://people.apache.org/home/dashorst/public_html/${project.groupId}/sites/${project.version}</url>
 		</site>
 		<repository>
-			<id>wicket-repo</id>
-			<url>scpexe://hover/home/almaw/wicket-release/repo/</url>
+			<id>people.apache.org</id>
+			<url>scpexe://people.apache.org/home/dashorst/public_html/${project.groupId}/repository/releases</url>
 		</repository>
 		<snapshotRepository>
-			<id>wicket-snapshot-repo</id>
-			<url>scpexe://hover/home/almaw/wicket-release/repo/</url>
+			<id>people.apache.org</id>
+			<url>scpexe://people.apache.org/home/dashorst/public_html/${project.groupId}/repository/snapshots</url>
 			<uniqueVersion>false</uniqueVersion>
         </snapshotRepository>
 	</distributionManagement>