Author: dashorst Date: Sun May 20 02:22:36 2007 New Revision: 539849 URL: http://svn.apache.org/viewvc?view=rev&rev=539849 Log: WICKET-565
Modified: incubator/wicket/trunk/jdk-1.4/pom.xml incubator/wicket/trunk/jdk-1.5/pom.xml incubator/wicket/trunk/pom.xml Modified: incubator/wicket/trunk/jdk-1.4/pom.xml URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/pom.xml?view=diff&rev=539849&r1=539848&r2=539849 ============================================================================== --- incubator/wicket/trunk/jdk-1.4/pom.xml (original) +++ incubator/wicket/trunk/jdk-1.4/pom.xml Sun May 20 02:22:36 2007 @@ -34,14 +34,33 @@ <name>Wicket JDK 1.4 modules</name> <description>Wicket is a Java-based open source component web application framework.</description> - <modules> - <module>wicket</module> - <module>wicket-extensions</module> - <module>wicket-spring</module> - <module>wicket-quickstart</module> - <module>wicket-datetime</module> - <module>wicket-velocity</module> - </modules> + <profiles> + <profile> + <id>all</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>wicket</module> + <module>wicket-extensions</module> + <module>wicket-spring</module> + <module>wicket-quickstart</module> + <module>wicket-datetime</module> + <module>wicket-velocity</module> + </modules> + </profile> + <!-- + release profile remains empty because the release moduleset is + determined at the parent pom --> + <profile> + <id>release</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <modules> + </modules> + </profile> + </profiles> <build> <plugins> <plugin> Modified: incubator/wicket/trunk/jdk-1.5/pom.xml URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/pom.xml?view=diff&rev=539849&r1=539848&r2=539849 ============================================================================== --- incubator/wicket/trunk/jdk-1.5/pom.xml (original) +++ incubator/wicket/trunk/jdk-1.5/pom.xml Sun May 20 02:22:36 2007 @@ -32,13 +32,32 @@ <name>Wicket JDK 1.5 modules</name> <description>Wicket is a Java-based open source component web application framework.</description> - <modules> - <module>wicket-auth-roles</module> - <module>wicket-jmx</module> - <module>wicket-objectssizeof-agent</module> - <module>wicket-spring-annot</module> - <module>wicket-examples</module> - </modules> + <profiles> + <profile> + <id>all</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>wicket-auth-roles</module> + <module>wicket-jmx</module> + <module>wicket-objectssizeof-agent</module> + <module>wicket-spring-annot</module> + <module>wicket-examples</module> + </modules> + </profile> + <!-- + release profile remains empty because the release moduleset is + determined at the parent pom --> + <profile> + <id>release</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <modules> + </modules> + </profile> + </profiles> <build> <plugins> <plugin> Modified: incubator/wicket/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/pom.xml?view=diff&rev=539849&r1=539848&r2=539849 ============================================================================== --- incubator/wicket/trunk/pom.xml (original) +++ incubator/wicket/trunk/pom.xml Sun May 20 02:22:36 2007 @@ -54,12 +54,20 @@ <activation> <activeByDefault>false</activeByDefault> </activation> + <!-- + modules jdk-1.4 and jdk-1.5 are defined not to process their + submodules: their release profile is empty. This way we can + define which projects to release with a Wicket release from + the parent. + --> <modules> + <module>jdk-1.4</module> <module>jdk-1.4/wicket</module> <module>jdk-1.4/wicket-datetime</module> <module>jdk-1.4/wicket-extensions</module> <module>jdk-1.4/wicket-spring</module> <module>jdk-1.4/wicket-velocity</module> + <module>jdk-1.5</module> <module>jdk-1.5/wicket-spring-annot</module> <module>jdk-1.5/wicket-auth-roles</module> <module>jdk-1.5/wicket-jmx</module>