|
6 | 6 |
|
7 | 7 | <groupId>org.sourcelab.http</groupId>
|
8 | 8 | <artifactId>http-client-wrapper</artifactId>
|
9 |
| - <version>0.1.1</version> |
| 9 | + <version>0.2.0</version> |
10 | 10 | <packaging>jar</packaging>
|
11 | 11 |
|
12 | 12 | <!-- Require Maven 3.3.9 -->
|
|
56 | 56 |
|
57 | 57 | <!-- Log4J Version -->
|
58 | 58 | <log4j2.version>2.12.1</log4j2.version>
|
| 59 | + <slf4j.version>1.7.29</slf4j.version> |
59 | 60 |
|
60 | 61 | <!-- test toggling -->
|
61 | 62 | <skipTests>false</skipTests>
|
|
75 | 76 | <version>${http-components.version}</version>
|
76 | 77 | </dependency>
|
77 | 78 |
|
78 |
| - <!-- Logging --> |
| 79 | + <!-- Logging Interface --> |
79 | 80 | <dependency>
|
80 |
| - <groupId>org.apache.logging.log4j</groupId> |
81 |
| - <artifactId>log4j-api</artifactId> |
82 |
| - <version>${log4j2.version}</version> |
83 |
| - </dependency> |
84 |
| - <dependency> |
85 |
| - <groupId>org.apache.logging.log4j</groupId> |
86 |
| - <artifactId>log4j-core</artifactId> |
87 |
| - <version>${log4j2.version}</version> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>org.apache.logging.log4j</groupId> |
91 |
| - <artifactId>log4j-slf4j-impl</artifactId> |
92 |
| - <version>${log4j2.version}</version> |
| 81 | + <groupId>org.slf4j</groupId> |
| 82 | + <artifactId>slf4j-api</artifactId> |
| 83 | + <version>${slf4j.version}</version> |
93 | 84 | </dependency>
|
94 | 85 |
|
95 | 86 | <!-- Testing Tools -->
|
|
129 | 120 | <version>9.4.20.v20190813</version>
|
130 | 121 | <scope>test</scope>
|
131 | 122 | </dependency>
|
| 123 | + |
| 124 | + <!-- Logging in tests --> |
| 125 | + <dependency> |
| 126 | + <groupId>org.apache.logging.log4j</groupId> |
| 127 | + <artifactId>log4j-api</artifactId> |
| 128 | + <version>${log4j2.version}</version> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.apache.logging.log4j</groupId> |
| 133 | + <artifactId>log4j-core</artifactId> |
| 134 | + <version>${log4j2.version}</version> |
| 135 | + <scope>test</scope> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>org.apache.logging.log4j</groupId> |
| 139 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 140 | + <version>${log4j2.version}</version> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
132 | 143 | </dependencies>
|
133 | 144 |
|
134 | 145 | <build>
|
|
0 commit comments