[Lutinutil-commits] r1138 - maven-i18n-plugin/trunk
Author: tchemit Date: 2008-09-25 11:34:05 +0000 (Thu, 25 Sep 2008) New Revision: 1138 Modified: maven-i18n-plugin/trunk/changelog maven-i18n-plugin/trunk/pom.xml Log: ajout du profile license pour pouvoir mettre a jour les entete des fichiers sources utilisation lutinpluginutil 0.2 execution explicite du plugin license-siwtcher (car plus dans superpom) application des dernieres optimisations sur les variables Modified: maven-i18n-plugin/trunk/changelog =================================================================== --- maven-i18n-plugin/trunk/changelog 2008-09-25 11:26:34 UTC (rev 1137) +++ maven-i18n-plugin/trunk/changelog 2008-09-25 11:34:05 UTC (rev 1138) @@ -1,4 +1,5 @@ ver-0-6 thimel 20080922 + * 20080925 [chemit] Using lutinpluginutil 0.2 and license-switcher in pom (no more in superpom) * 20080922 [thimel] Using lutinpluginproject 3.0 ver-0-5 chemit 20080824 Modified: maven-i18n-plugin/trunk/pom.xml =================================================================== --- maven-i18n-plugin/trunk/pom.xml 2008-09-25 11:26:34 UTC (rev 1137) +++ maven-i18n-plugin/trunk/pom.xml 2008-09-25 11:34:05 UTC (rev 1138) @@ -13,15 +13,15 @@ <version>3.0</version> </parent> - <groupId>org.codelutin</groupId> + <!--groupId>org.codelutin</groupId--> <artifactId>maven-i18n-plugin</artifactId> <dependencies> <dependency> - <groupId>lutinlib</groupId> + <groupId>org.codelutin</groupId> <artifactId>lutinprocessor</artifactId> - <version>[0.12,]</version> + <version>0.15</version> <scope>compile</scope> </dependency> @@ -42,7 +42,7 @@ <dependency> <groupId>org.codelutin</groupId> <artifactId>lutinpluginutil</artifactId> - <version>[0.1,]</version> + <version>0.2</version> <scope>compile</scope> </dependency> @@ -59,9 +59,6 @@ </description> <inceptionYear>2007</inceptionYear> - <!-- BE WARE, this value must rewritten here since it will be otherwise suffixed by inheritance --> - <url>${labs.project.url}</url> - <!-- ************************************************************* --> <!-- *** Build Settings ****************************************** --> <!-- ************************************************************* --> @@ -77,6 +74,21 @@ <artifactId>maven-jrst-plugin</artifactId> </plugin> + <!-- plugin license-switcher --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-license-switcher-plugin</artifactId> + <version>0.2</version> + <executions> + <execution> + <goals> + <goal>license</goal> + <goal>third-party</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> @@ -88,29 +100,45 @@ <!-- nom du projet sur le labs --> <labs.project>lutinutil</labs.project> - <!-- BE WARE, this value must rewritten here since it will be otherwise suffixed by inheritance --> - <maven.scm.url>https://${labs.host}/plugins/scmsvn/viewcvs.php/trunk/${pom.artifactId}?root=${labs.project} - </maven.scm.url> - </properties> <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> + <!--Source control management--> <scm> + <connection>${maven.scm.connection}</connection> + <developerConnection>${maven.scm.developerConnection}</developerConnection> <url>${maven.scm.url}</url> </scm> - <reporting> - <plugins> - <!--Site report's plugin--> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-plugin-plugin</artifactId> - </plugin> - </plugins> - </reporting> + <!-- Maven Environment : profiles --> + <profiles> + <profile> + <id>license</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-license-switcher-plugin</artifactId> + <version>0.2</version> + <executions> + <execution> + <goals> + <goal>switch</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org