[Lutinutil-commits] r1323 - in maven-i18n-plugin/trunk: . src/main/resources
Author: tchemit Date: 2009-02-05 15:53:38 +0000 (Thu, 05 Feb 2009) New Revision: 1323 Added: maven-i18n-plugin/trunk/src/main/resources/log4j.properties Modified: maven-i18n-plugin/trunk/changelog.txt maven-i18n-plugin/trunk/pom.xml Log: on repasse en lutinpluginproject:3.4-SNAPSHOT Modified: maven-i18n-plugin/trunk/changelog.txt =================================================================== --- maven-i18n-plugin/trunk/changelog.txt 2009-02-05 15:50:45 UTC (rev 1322) +++ maven-i18n-plugin/trunk/changelog.txt 2009-02-05 15:53:38 UTC (rev 1323) @@ -1,3 +1,5 @@ +0.9 ??? 200902?? + * 20090205 [chemit] use lutinproject 3.4 0.8 chemit 20090107 * 20081205 [chemit] modify ParserValidation (message can by suffix by ## to delimite args) Modified: maven-i18n-plugin/trunk/pom.xml =================================================================== --- maven-i18n-plugin/trunk/pom.xml 2009-02-05 15:50:45 UTC (rev 1322) +++ maven-i18n-plugin/trunk/pom.xml 2009-02-05 15:53:38 UTC (rev 1323) @@ -10,7 +10,7 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinpluginproject</artifactId> - <version>3.2</version> + <version>3.4.0</version> </parent> <artifactId>maven-i18n-plugin</artifactId> @@ -18,6 +18,12 @@ <version>0.9-SNAPSHOT</version> <dependencies> + <!--dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.14</version> + <scope>compile</scope> + </dependency--> <dependency> <groupId>org.codelutin</groupId> @@ -67,6 +73,30 @@ <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> <properties> @@ -77,6 +107,12 @@ <!-- nom du projet sur le labs --> <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 + --> + <i18n.version>${project.version}</i18n.version> </properties> <!-- ************************************************************* --> @@ -90,4 +126,39 @@ <url>${maven.scm.url}</url> </scm> + <profiles> + <!-- perform only on a release stage when using the maven-release-plugin --> + <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> \ No newline at end of file Copied: maven-i18n-plugin/trunk/src/main/resources/log4j.properties (from rev 1312, lutinpluginutil/trunk/src/test/resources/log4j.properties) =================================================================== --- maven-i18n-plugin/trunk/src/main/resources/log4j.properties (rev 0) +++ maven-i18n-plugin/trunk/src/main/resources/log4j.properties 2009-02-05 15:53:38 UTC (rev 1323) @@ -0,0 +1,10 @@ +# Global logging configuration +log4j.rootLogger=ERROR, stdout +# Console output... +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) %M - %m%n + +# package level +log4j.logger.org.codelutin.util=INFO + Property changes on: maven-i18n-plugin/trunk/src/main/resources/log4j.properties ___________________________________________________________________ Name: svn:mergeinfo +
participants (1)
-
tchemit@users.labs.libre-entreprise.org