[Lutinutil-commits] r1338 - maven-license-switcher-plugin/trunk
Author: tchemit Date: 2009-02-10 13:25:37 +0000 (Tue, 10 Feb 2009) New Revision: 1338 Modified: maven-license-switcher-plugin/trunk/changelog.txt maven-license-switcher-plugin/trunk/pom.xml Log: utilisation de lutinproject 3.4 plutot que lutinpluginproject Modified: maven-license-switcher-plugin/trunk/changelog.txt =================================================================== --- maven-license-switcher-plugin/trunk/changelog.txt 2009-02-10 13:19:47 UTC (rev 1337) +++ maven-license-switcher-plugin/trunk/changelog.txt 2009-02-10 13:25:37 UTC (rev 1338) @@ -1,5 +1,5 @@ 0.6 chemit 200812?? - * 20081205 [chemit] use lutinpluginproject 3.2 + * 20081210 [chemit] use lutinproject 3.4 ver-0-5 chemit 20081108 * 20081121 [chemit] fix bug when no name is defined in license Modified: maven-license-switcher-plugin/trunk/pom.xml =================================================================== --- maven-license-switcher-plugin/trunk/pom.xml 2009-02-10 13:19:47 UTC (rev 1337) +++ maven-license-switcher-plugin/trunk/pom.xml 2009-02-10 13:25:37 UTC (rev 1338) @@ -9,7 +9,7 @@ <!-- ************************************************************* --> <parent> <groupId>org.codelutin</groupId> - <artifactId>lutinpluginproject</artifactId> + <artifactId>lutinproject</artifactId> <version>3.4-SNAPSHOT</version> </parent> @@ -35,7 +35,7 @@ <dependency> <groupId>org.codelutin</groupId> <artifactId>lutinpluginutil</artifactId> - <version>0.2</version> + <version>0.3-SNAPSHOT</version> <scope>compile</scope> </dependency> @@ -55,6 +55,20 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + </dependencies> <!-- ************************************************************* --> @@ -74,12 +88,11 @@ <properties> <labs.id>12</labs.id> <labs.project>lutinutil</labs.project> - <!-- lorsque l'on veut deplopyer une nouvelle version, on execute - un release:prepare, - on checkout le tag et on install localement - un release:perform - --> + <license-switcher.version>${project.version}</license-switcher.version> + + <maven.version>2.0.9</maven.version> + </properties> <build> @@ -87,7 +100,21 @@ <defaultGoal>install</defaultGoal> <plugins> + + <!-- plugin plugin --> <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> + <executions> + <execution> + <goals> + <goal>helpmojo</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <!--Copy licenses files for site--> @@ -135,6 +162,16 @@ </plugins> </build> + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> @@ -146,6 +183,23 @@ <url>${maven.scm.url}</url> </scm> + <!--Code Lutin Repository--> + <repositories> + <repository> + <id>codelutin-repository</id> + <name>CodeLutinRepository</name> + <url>${labs.builder.url}</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + </repositories> + <profiles> <!-- perform only on a release stage when using the maven-release-plugin --> <profile>
participants (1)
-
tchemit@users.labs.libre-entreprise.org