[Buix-commits] r942 - in lutinjaxx/trunk: . jaxx-core jaxx-example jaxx-example/Calculator jaxx-example/Counter jaxx-example/LabelStyle jaxx-example/Validation jaxx-swing-action jaxx-util maven-jaxx-plugin
Author: tchemit Date: 2008-10-16 15:40:40 +0000 (Thu, 16 Oct 2008) New Revision: 942 Modified: lutinjaxx/trunk/jaxx-core/pom.xml lutinjaxx/trunk/jaxx-example/Calculator/pom.xml lutinjaxx/trunk/jaxx-example/Counter/pom.xml lutinjaxx/trunk/jaxx-example/LabelStyle/pom.xml lutinjaxx/trunk/jaxx-example/Validation/pom.xml lutinjaxx/trunk/jaxx-example/pom.xml lutinjaxx/trunk/jaxx-swing-action/pom.xml lutinjaxx/trunk/jaxx-util/pom.xml lutinjaxx/trunk/maven-jaxx-plugin/pom.xml lutinjaxx/trunk/pom.xml Log: final pom refactoring (use the inheritate version) Modified: lutinjaxx/trunk/jaxx-core/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-core/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-core/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -4,6 +4,10 @@ <modelVersion>4.0.0</modelVersion> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> <groupId>org.codelutin</groupId> <artifactId>lutinjaxx</artifactId> @@ -11,18 +15,7 @@ </parent> <artifactId>jaxx-core</artifactId> - <name>jaxx-core</name> - <packaging>jar</packaging> - <version>0.5-SNAPSHOT</version> - <description>Jaxx lutin library core</description> - - <build> - <plugins> - - </plugins> - </build> - <dependencies> <dependency> @@ -56,6 +49,17 @@ </dependencies> <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>jaxx-core</name> + <description>Jaxx lutin library core</description> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + <packaging>jar</packaging> + + <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> <scm> Modified: lutinjaxx/trunk/jaxx-example/Calculator/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-example/Calculator/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-example/Calculator/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -22,8 +22,6 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>Calculator example</name> - <!--version>0.5-SNAPSHOT</version--> - <inceptionYear>2008</inceptionYear> <description>Jaxx Calculator example</description> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-example/Counter/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-example/Counter/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-example/Counter/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -22,8 +22,6 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>Counter example</name> - <!--version>0.5-SNAPSHOT</version--> - <inceptionYear>2008</inceptionYear> <description>Jaxx Counter example</description> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-example/LabelStyle/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-example/LabelStyle/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-example/LabelStyle/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -22,8 +22,6 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>LabelStyle example</name> - <version>0.5-SNAPSHOT</version> - <inceptionYear>2008</inceptionYear> <description>Jaxx LabelStyle example</description> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-example/Validation/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-example/Validation/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-example/Validation/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -22,8 +22,6 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>Validation example</name> - <version>0.5-SNAPSHOT</version> - <inceptionYear>2008</inceptionYear> <description>Jaxx Validation (with xwork validation) example</description> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-example/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-example/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-example/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -39,8 +39,6 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> <name>jaxx-example</name> - <version>0.5-SNAPSHOT</version> - <inceptionYear>2008</inceptionYear> <description>Jaxx Example super pom</description> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-swing-action/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-swing-action/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-swing-action/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -4,6 +4,11 @@ <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> <groupId>org.codelutin</groupId> <artifactId>lutinjaxx</artifactId> @@ -11,11 +16,34 @@ </parent> <artifactId>jaxx-swing-action</artifactId> + + <dependencies> + + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>jaxx-core</artifactId> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>jboss</groupId> + <artifactId>javassist</artifactId> + <version>3.7.ga</version> + <scope>compile</scope> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> <name>jaxx-swing-action</name> + <description>Jaxx lutin library swing extension (tabs and actions)</description> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> <packaging>jar</packaging> - <version>0.5-SNAPSHOT</version> - <description>Jaxx lutin library swing extension (tabs and actions)</description> <build> <plugins> @@ -35,23 +63,6 @@ </plugins> </build> - <dependencies> - - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>jaxx-core</artifactId> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>jboss</groupId> - <artifactId>javassist</artifactId> - <version>3.7.ga</version> - <scope>compile</scope> - </dependency> - - </dependencies> - <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/jaxx-util/pom.xml =================================================================== --- lutinjaxx/trunk/jaxx-util/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/jaxx-util/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -4,6 +4,9 @@ <modelVersion>4.0.0</modelVersion> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> <parent> <groupId>org.codelutin</groupId> <artifactId>lutinjaxx</artifactId> @@ -11,11 +14,17 @@ </parent> <artifactId>jaxx-util</artifactId> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> <name>jaxx-util</name> + <description>Jaxx lutin library utility</description> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> <packaging>jar</packaging> - <version>0.5-SNAPSHOT</version> - <description>Jaxx lutin library utility</description> <build> <plugins> Modified: lutinjaxx/trunk/maven-jaxx-plugin/pom.xml =================================================================== --- lutinjaxx/trunk/maven-jaxx-plugin/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/maven-jaxx-plugin/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -16,7 +16,6 @@ </parent> <artifactId>maven-jaxx-plugin</artifactId> - <name>maven-jaxx-plugin</name> <dependencies> @@ -77,15 +76,13 @@ <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> - <version>0.5-SNAPSHOT</version> + <name>maven-jaxx-plugin</name> <description> Maven 2 plugin to generate java source from ui interface definitions in jaxx format. </description> - <inceptionYear>2008</inceptionYear> - <!-- ************************************************************* --> <!-- *** Build Settings ****************************************** --> <!-- ************************************************************* --> Modified: lutinjaxx/trunk/pom.xml =================================================================== --- lutinjaxx/trunk/pom.xml 2008-10-16 15:39:52 UTC (rev 941) +++ lutinjaxx/trunk/pom.xml 2008-10-16 15:40:40 UTC (rev 942) @@ -22,7 +22,7 @@ <module>jaxx-core</module> <module>jaxx-swing-action</module> <module>maven-jaxx-plugin</module> - <module>jaxx-example</module> + <!--module>jaxx-example</module--> </modules> <dependencies> @@ -201,4 +201,13 @@ <url>${maven.scm.url}</url> </scm> + <profiles> + <profile> + <id>example</id> + <modules> + <module>jaxx-example</module> + </modules> + </profile> + </profiles> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org