|
47 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
48 | 48 |
|
49 | 49 | <!-- guava version --> |
50 | | - <guava.version>28.1-jre</guava.version> |
| 50 | + <guava.version>28.2-jre</guava.version> |
51 | 51 |
|
52 | 52 | <!-- Http Components version --> |
53 | | - <http-components.version>4.5.10</http-components.version> |
| 53 | + <http-components.version>4.5.11</http-components.version> |
54 | 54 |
|
55 | 55 | <!-- Jackson version --> |
56 | | - <jackson.version>2.9.9</jackson.version> |
| 56 | + <jackson.version>2.10.2</jackson.version> |
57 | 57 |
|
58 | 58 | <!-- Define which version of junit you'll be running --> |
59 | 59 | <junit.version>4.12</junit.version> |
|
65 | 65 |
|
66 | 66 | <!-- Log4J Version --> |
67 | 67 | <log4j2.version>2.12.1</log4j2.version> |
| 68 | + <slf4j.version>1.7.30</slf4j.version> |
68 | 69 |
|
69 | 70 | <!-- test toggling --> |
70 | 71 | <skipTests>false</skipTests> |
|
103 | 104 | <version>${jackson.version}</version> |
104 | 105 | </dependency> |
105 | 106 |
|
106 | | - <!-- Logging --> |
| 107 | + <!-- Logging Interface --> |
107 | 108 | <dependency> |
108 | | - <groupId>org.apache.logging.log4j</groupId> |
109 | | - <artifactId>log4j-api</artifactId> |
110 | | - <version>${log4j2.version}</version> |
111 | | - </dependency> |
112 | | - <dependency> |
113 | | - <groupId>org.apache.logging.log4j</groupId> |
114 | | - <artifactId>log4j-core</artifactId> |
115 | | - <version>${log4j2.version}</version> |
116 | | - </dependency> |
117 | | - <dependency> |
118 | | - <groupId>org.apache.logging.log4j</groupId> |
119 | | - <artifactId>log4j-slf4j-impl</artifactId> |
120 | | - <version>${log4j2.version}</version> |
| 109 | + <groupId>org.slf4j</groupId> |
| 110 | + <artifactId>slf4j-api</artifactId> |
| 111 | + <version>${slf4j.version}</version> |
121 | 112 | </dependency> |
122 | 113 |
|
123 | 114 | <!-- Testing Tools --> |
|
165 | 156 | <dependency> |
166 | 157 | <groupId>org.eclipse.jetty</groupId> |
167 | 158 | <artifactId>jetty-server</artifactId> |
168 | | - <version>9.4.20.v20190813</version> |
| 159 | + <version>9.4.27.v20200227</version> |
| 160 | + <scope>test</scope> |
| 161 | + </dependency> |
| 162 | + |
| 163 | + <!-- Logging in tests --> |
| 164 | + <dependency> |
| 165 | + <groupId>org.apache.logging.log4j</groupId> |
| 166 | + <artifactId>log4j-api</artifactId> |
| 167 | + <version>${log4j2.version}</version> |
| 168 | + <scope>test</scope> |
| 169 | + </dependency> |
| 170 | + <dependency> |
| 171 | + <groupId>org.apache.logging.log4j</groupId> |
| 172 | + <artifactId>log4j-core</artifactId> |
| 173 | + <version>${log4j2.version}</version> |
| 174 | + <scope>test</scope> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>org.apache.logging.log4j</groupId> |
| 178 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 179 | + <version>${log4j2.version}</version> |
169 | 180 | <scope>test</scope> |
170 | 181 | </dependency> |
171 | 182 | </dependencies> |
|
0 commit comments