|
@@ -36,7 +36,9 @@
|
|
|
|
|
|
|
|
<!-- Dependencies versions -->
|
|
<!-- Dependencies versions -->
|
|
|
<slf4j.version>1.7.5</slf4j.version>
|
|
<slf4j.version>1.7.5</slf4j.version>
|
|
|
|
|
+ <slf4j.log4j.version>1.7.5</slf4j.log4j.version>
|
|
|
<logback.version>1.0.13</logback.version>
|
|
<logback.version>1.0.13</logback.version>
|
|
|
|
|
+ <log4j.version>1.2.17</log4j.version>
|
|
|
<jcommander.version>1.30</jcommander.version>
|
|
<jcommander.version>1.30</jcommander.version>
|
|
|
<junit.version>4.10</junit.version>
|
|
<junit.version>4.10</junit.version>
|
|
|
|
|
|
|
@@ -64,6 +66,43 @@
|
|
|
|
|
|
|
|
</developers>
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
+ <profiles>
|
|
|
|
|
+
|
|
|
|
|
+ <profile>
|
|
|
|
|
+ <id>logback</id>
|
|
|
|
|
+ <activation>
|
|
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
|
|
+ </activation>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
|
|
+ <version>${logback.version}</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </profile>
|
|
|
|
|
+
|
|
|
|
|
+ <profile>
|
|
|
|
|
+ <id>log4j</id>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
+ <version>${slf4j.log4j.version}</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>log4j</groupId>
|
|
|
|
|
+ <artifactId>log4j</artifactId>
|
|
|
|
|
+ <version>${log4j.version}</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </profile>
|
|
|
|
|
+
|
|
|
|
|
+ </profiles>
|
|
|
|
|
+
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
@@ -79,15 +118,6 @@
|
|
|
<version>${jcommander.version}</version>
|
|
<version>${jcommander.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
-
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>ch.qos.logback</groupId>
|
|
|
|
|
- <artifactId>logback-classic</artifactId>
|
|
|
|
|
- <version>${logback.version}</version>
|
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- Junit -->
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
<artifactId>junit</artifactId>
|