Author: tchemit Date: 2012-05-02 13:34:33 +0200 (Wed, 02 May 2012) New Revision: 3351 Url: http://chorem.org/repositories/revision/pollen/3351 Log: fix dependencies + add l10n plugin Modified: trunk/pollen-services/pom.xml trunk/pom.xml Modified: trunk/pollen-services/pom.xml =================================================================== --- trunk/pollen-services/pom.xml 2012-05-02 11:28:51 UTC (rev 3350) +++ trunk/pollen-services/pom.xml 2012-05-02 11:34:33 UTC (rev 3351) @@ -88,14 +88,6 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - </dependency> </dependencies> <!-- ************************************************************* --> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2012-05-02 11:28:51 UTC (rev 3350) +++ trunk/pom.xml 2012-05-02 11:34:33 UTC (rev 3351) @@ -460,6 +460,26 @@ </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>l10n-maven-plugin</artifactId> + <configuration> + <locales> + <locale>fr_FR</locale> + <locale>en_GB</locale> + </locales> + </configuration> + <executions> + <execution> + <goals> + <goal>pseudo</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <resources> <resource> <directory>src/main/resources</directory> @@ -599,6 +619,19 @@ </reportSet> </reportSets> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>l10n-maven-plugin</artifactId> + <version>${l10nPluginVersion}</version> + <configuration> + <locales> + <locale>fr_FR</locale> + <locale>en_GB</locale> + </locales> + </configuration> + </plugin> + </plugins> </reporting>