[Buix-commits] r585 - in trunk/lutinjaxx: . maven
Author: tchemit Date: 2008-04-18 20:58:50 +0000 (Fri, 18 Apr 2008) New Revision: 585 Modified: trunk/lutinjaxx/maven/pom.xml trunk/lutinjaxx/pom.xml Log: maven plugin integrate Modified: trunk/lutinjaxx/maven/pom.xml =================================================================== --- trunk/lutinjaxx/maven/pom.xml 2008-04-18 20:43:00 UTC (rev 584) +++ trunk/lutinjaxx/maven/pom.xml 2008-04-18 20:58:50 UTC (rev 585) @@ -10,28 +10,58 @@ <!-- ************************************************************* --> <parent> - <groupId>lutinpom</groupId> - <artifactId>lutinpluginproject</artifactId> - <version>2.3</version> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>pom</artifactId> + <version>0.1-SNAPSHOT</version> </parent> - <groupId>lutinplugin</groupId> <artifactId>maven-jaxx-plugin</artifactId> + <name>maven plugin</name> <dependencies> <dependency> - <groupId>lutinlib</groupId> - <artifactId>jaxx</artifactId> - <version>1.0.4-SNAPSHOT</version> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>core</artifactId> + <version>0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.codelutin.jaxx.provider</groupId> + <artifactId>swing</artifactId> + <version>0.1-SNAPSHOT</version> + <scope>test</scope> + </dependency> + <!-- maven plugin project dependencies --> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>2.0.4</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + <version>2.0.4</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>2.0.4</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <version>1.0.5</version> + <scope>compile</scope> + </dependency> </dependencies> <!-- ************************************************************* --> <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> - <name>Maven 2 jaxx compilator plugin</name> <version>0.2-SNAPSHOT</version> <description> @@ -69,7 +99,7 @@ <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> - + <!-- the plugin is a module in a labs project (buix), so we have to override this property (see in the parent pom for more explanation) --> @@ -77,37 +107,4 @@ <url>${maven.scm.url}</url> </scm> - <profiles> - <profile> - <id>project</id> - <activation> - <activeByDefault>true</activeByDefault> - <property> - <name>user.locale</name> - <value>ISO-8859-15</value> - </property> - </activation> - <properties> - - <!-- buix labs project's id --> - <labs.id>38</labs.id> - - <!-- the plugin is inside the buix labs project --> - <labs.project>buix</labs.project> - - <!-- launch test before install --> - <maven.test.skip>false</maven.test.skip> - - <!-- maven will suffix with /${pom.artifactId} AND This is not good at all --> - <maven.scm.url>https://${labs.host}/plugins/scmsvn/viewcvs.php/?root=buix</maven.scm.url> - - <!-- maven will suffix with /${pom.artifactId} --> - <maven.scm.developerConnection>scm:svn:svn+ssh:${username}@${labs.host}/svnroot/buix/trunk</maven.scm.developerConnection> - - <!-- maven will suffix with /${pom.artifactId} --> - <maven.scm.connection>scm:svn:svn:anonymous@${labs.host}/svnroot/buix/trunk</maven.scm.connection> - - </properties> - </profile> - </profiles> </project> Modified: trunk/lutinjaxx/pom.xml =================================================================== --- trunk/lutinjaxx/pom.xml 2008-04-18 20:43:00 UTC (rev 584) +++ trunk/lutinjaxx/pom.xml 2008-04-18 20:58:50 UTC (rev 585) @@ -22,6 +22,7 @@ <module>core</module> <module>runtime</module> <module>provider</module> + <module>maven</module> </modules> <dependencies> @@ -131,7 +132,7 @@ <artifactId>maven-source-plugin</artifactId> <executions> <execution> - <phase>deploy</phase> + <phase>install</phase> <goals> <goal>jar</goal> </goals>
participants (1)
-
tchemit@users.labs.libre-entreprise.org