r538 - in trunk: . faxtomail-service faxtomail-ui-swing faxtomail-ui-web
Author: echatellier Date: 2014-08-13 10:39:41 +0200 (Wed, 13 Aug 2014) New Revision: 538 Url: http://forge.codelutin.com/projects/faxtomail/repository/revisions/538 Log: Fix logging Modified: trunk/faxtomail-service/pom.xml trunk/faxtomail-ui-swing/pom.xml trunk/faxtomail-ui-web/pom.xml trunk/pom.xml Modified: trunk/faxtomail-service/pom.xml =================================================================== --- trunk/faxtomail-service/pom.xml 2014-08-13 08:35:54 UTC (rev 537) +++ trunk/faxtomail-service/pom.xml 2014-08-13 08:39:41 UTC (rev 538) @@ -151,6 +151,12 @@ <!-- Logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> <scope>test</scope> </dependency> Modified: trunk/faxtomail-ui-swing/pom.xml =================================================================== --- trunk/faxtomail-ui-swing/pom.xml 2014-08-13 08:35:54 UTC (rev 537) +++ trunk/faxtomail-ui-swing/pom.xml 2014-08-13 08:39:41 UTC (rev 538) @@ -190,14 +190,17 @@ <!-- Logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> - <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> - <scope>runtime</scope> </dependency> <dependency> Modified: trunk/faxtomail-ui-web/pom.xml =================================================================== --- trunk/faxtomail-ui-web/pom.xml 2014-08-13 08:35:54 UTC (rev 537) +++ trunk/faxtomail-ui-web/pom.xml 2014-08-13 08:39:41 UTC (rev 538) @@ -158,17 +158,20 @@ <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> - + <dependency> <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> - <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> - <scope>runtime</scope> </dependency> <dependency> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2014-08-13 08:35:54 UTC (rev 537) +++ trunk/pom.xml 2014-08-13 08:39:41 UTC (rev 538) @@ -356,6 +356,13 @@ <!-- Logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <version>${log4jVersion}</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> <version>${log4jVersion}</version> <scope>runtime</scope>
participants (1)
-
echatellier@users.forge.codelutin.com