Author: tchemit Date: 2009-02-05 17:16:14 +0000 (Thu, 05 Feb 2009) New Revision: 1327 Modified: lutinpluginutil/trunk/changelog.txt lutinpluginutil/trunk/pom.xml Log: passage en lutinpluginproject:3.4-SNAPSHOT Modified: lutinpluginutil/trunk/changelog.txt =================================================================== --- lutinpluginutil/trunk/changelog.txt 2009-02-05 16:07:15 UTC (rev 1326) +++ lutinpluginutil/trunk/changelog.txt 2009-02-05 17:16:14 UTC (rev 1327) @@ -1,4 +1,5 @@ 0.3 chemit 200812?? + * 20090205 [chemit] use lutinpluginproject 3.4 * 20090111 [chemit] use lutinpluginproject 3.3 * 20081205 [chemit] use lutinpluginproject 3.2 Modified: lutinpluginutil/trunk/pom.xml =================================================================== --- lutinpluginutil/trunk/pom.xml 2009-02-05 16:07:15 UTC (rev 1326) +++ lutinpluginutil/trunk/pom.xml 2009-02-05 17:16:14 UTC (rev 1327) @@ -11,7 +11,7 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinpluginproject</artifactId> - <version>3.3</version> + <version>3.4-SNAPSHOT</version> </parent> <artifactId>lutinpluginutil</artifactId> @@ -48,6 +48,33 @@ </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 ************************************** --> <!-- ************************************************************* --> @@ -59,4 +86,41 @@ <url>${maven.scm.url}</url> </scm> + <profiles> + <profile> + <id>release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + + <!-- 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>