Author: tchemit Date: 2008-01-13 19:47:53 +0000 (Sun, 13 Jan 2008) New Revision: 176 Modified: trunk/jaxx/pom.xml trunk/jaxx/profiles.xml Log: utilisation du projet parent lutinpom:lutinproject:2.3 au lieu de l'ancien lutinlib:lutinproject:2.2 utilisation des conventions de nommage des r?\195?\169pertoires d?\195?\169finies par maven 2 Modified: trunk/jaxx/pom.xml =================================================================== --- trunk/jaxx/pom.xml 2008-01-13 19:46:57 UTC (rev 175) +++ trunk/jaxx/pom.xml 2008-01-13 19:47:53 UTC (rev 176) @@ -5,61 +5,19 @@ <modelVersion>4.0.0</modelVersion> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + <parent> - <groupId>lutinlib</groupId> + <groupId>lutinpom</groupId> <artifactId>lutinproject</artifactId> - <version>2.2</version> + <version>2.3</version> </parent> + <groupId>buix</groupId> <artifactId>jaxx</artifactId> - <name>Jaxx core library</name> - - <packaging>jar</packaging> - - <version>1.0.4-SNAPSHOT</version> - - <description>Librairie contenant le framework jaxx</description> - - <inceptionYear>2008</inceptionYear> - - <contributors> - <contributor> - <name>Tony Chemit</name> - <email>chemit@codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - <roles> - <role>D�veloppeur</role> - </roles> - </contributor> - </contributors> - - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id={labs.id}</url> - </issueManagement> - - <distributionManagement> - <repository> - <id>labs</id> - <url> - scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2 - </url> - </repository> - <site> - <id>labs</id> - <url> - scp://labs.libre-entreprise.org/home/groups/buix/htdocs/${pom.artifactId} - </url> - </site> - </distributionManagement> - - <scm> - <connection>scm:svn:svn:anonymous@labs.libre-entreprise.org/svnroot/buix/trunk/${pom.artifactId}</connection> - <developerConnection>scm:svn:svn+ssh:${username}@labs.libre-entreprise.org/svnroot/buix/trunk/${pom.artifactId}</developerConnection> - <url>https://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/?root=buix</url> - </scm> - <dependencies> <!-- pour disposer des widgets des lutins --> <dependency> @@ -85,4 +43,43 @@ </dependency> </dependencies> + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>Jaxx core library</name> + <version>1.0.4-SNAPSHOT</version> + + <description>Library of framework jaxx</description> + <inceptionYear>2008</inceptionYear> + + <developers> + <developer> + <name>Tony Chemit</name> + <email>chemit@codelutin.com</email> + <organization>Code Lutin</organization> + <timezone>+2</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + </developers> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <!-- the project is a module in a labs project (buix), so we have to override + this property (see in the parent pom for more explanation) + --> + <scm> + <url>${maven.scm.url}</url> + </scm> + </project> Modified: trunk/jaxx/profiles.xml =================================================================== --- trunk/jaxx/profiles.xml 2008-01-13 19:46:57 UTC (rev 175) +++ trunk/jaxx/profiles.xml 2008-01-13 19:47:53 UTC (rev 176) @@ -10,19 +10,21 @@ <properties> - <!-- id du projet du labs (buix) --> + <!-- buix projects labs' id --> <labs.id>38</labs.id> - <!--Source base dir--> - <maven.src.dir>${basedir}/src</maven.src.dir> + <!-- the project is inside the buix labs project --> + <labs.project>buix</labs.project> - <!--Test--> - <maven.test.skip>true</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> - <!--Compile with ?--> - <maven.compile.source>1.5</maven.compile.source> - <maven.compile.target>1.5</maven.compile.target> + <!-- 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> + <!--Main class in JAR --> <maven.jar.main.class>jaxx.compiler.JAXXCompiler</maven.jar.main.class>
participants (1)
-
tchemit@users.labs.libre-entreprise.org