[Lutinutil-commits] r1329 - lutinutilextra/trunk
Author: tchemit Date: 2009-02-05 17:55:47 +0000 (Thu, 05 Feb 2009) New Revision: 1329 Modified: lutinutilextra/trunk/changelog.txt lutinutilextra/trunk/pom.xml Log: passage en lutinpluginproject:3.4-SNAPSHOT Modified: lutinutilextra/trunk/changelog.txt =================================================================== --- lutinutilextra/trunk/changelog.txt 2009-02-05 17:52:42 UTC (rev 1328) +++ lutinutilextra/trunk/changelog.txt 2009-02-05 17:55:47 UTC (rev 1329) @@ -1,5 +1,5 @@ ver-0-2 - * 20090111 [chemit] use lutinproject 3.3 + * 20090205 [chemit] use lutinproject 3.4 * 20081118 [chemit] use lutinproject 3.1 + clean pom + produce javadoc * LGPLv3 * UTF-8 Modified: lutinutilextra/trunk/pom.xml =================================================================== --- lutinutilextra/trunk/pom.xml 2009-02-05 17:52:42 UTC (rev 1328) +++ lutinutilextra/trunk/pom.xml 2009-02-05 17:55:47 UTC (rev 1329) @@ -10,7 +10,7 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>3.3</version> + <version>3.4-SNAPSHOT</version> </parent> <artifactId>lutinutilextra</artifactId> @@ -29,21 +29,21 @@ <dependency> <groupId>aspectwerkz</groupId> <artifactId>aspectwerkz-core</artifactId> - <version>2.0</version> + <version>${aspectwerkz.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>aspectwerkz</groupId> <artifactId>aspectwerkz</artifactId> - <version>2.0</version> + <version>${aspectwerkz.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>aspectwerkz</groupId> <artifactId>aspectwerkz-jdk5</artifactId> - <version>2.0</version> + <version>${aspectwerkz.version}</version> <scope>compile</scope> </dependency> @@ -69,8 +69,37 @@ <labs.id>12</labs.id> <!-- nom du projet sur le labs --> <labs.project>lutinutil</labs.project> + + <aspectwerkz.version>2.0</aspectwerkz.version> </properties> + <build> + <defaultGoal>install</defaultGoal> + + <plugins> + <!-- Always process jrst files, but only called on pre-site phase --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-jrst-plugin</artifactId> + <version>${jrst.version}</version> + <configuration> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${maven.site.gen.dir}</directoryOut> + <defaultLocale>fr</defaultLocale> + <inputEncoding>${maven.compile.encoding}</inputEncoding> + <outputEncoding>${maven.compile.encoding}</outputEncoding> + </configuration> + <executions> + <execution> + <phase>pre-site</phase> + <goals> + <goal>jrst</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> @@ -82,4 +111,52 @@ <developerConnection>${maven.scm.developerConnection}</developerConnection> </scm> + <profiles> + <profile> + <id>release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + + <!-- launch in a release the assembly automaticly --> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>create-assembly</id> + <phase>package</phase> + </execution> + </executions> + </plugin> + + <!-- always add license and third-party files to classpath --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-license-switcher-plugin</artifactId> + <version>${license-switcher.version}</version> + <configuration> + <licenseName>${license-switcher.licenseName}</licenseName> + </configuration> + <executions> + <execution> + <id>attach-licenses</id> + <goals> + <goal>license</goal> + <goal>third-party</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + + </build> + </profile> + </profiles> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org