Skip to content

Commit 3ab7331

Browse files
committed
Updates dependencies to latest version.
All dependencies are updated except for jdom 1.1 and antlr 3.4. Updating the former to jdom2 would require all users of the JDomDocumentToStream module to migrate to jdom2, too. We do not want to force users to do this. So, we stick to jdom 1. We still use antlr 3.4 on our build system to generate the Flux parser and lexer. As there is no need to update this at the moment, we stay on antlr 3.4.
1 parent c666bd8 commit 3ab7331

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

pom.xml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@
6161
<properties>
6262
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6363
<targetJdk>1.6</targetJdk>
64-
<junit.version>4.11</junit.version>
65-
<antlr.version>3.4</antlr.version>
6664
</properties>
6765

6866
<scm>
@@ -167,7 +165,7 @@
167165
<dependency>
168166
<groupId>junit</groupId>
169167
<artifactId>junit</artifactId>
170-
<version>${junit.version}</version>
168+
<version>4.11</version>
171169
</dependency>
172170

173171
<dependency>
@@ -179,26 +177,26 @@
179177
<dependency>
180178
<groupId>org.apache.commons</groupId>
181179
<artifactId>commons-compress</artifactId>
182-
<version>1.4</version>
180+
<version>1.7</version>
183181
</dependency>
184182

185183
<dependency>
186184
<groupId>org.slf4j</groupId>
187185
<artifactId>slf4j-log4j12</artifactId>
188-
<version>1.7.2</version>
186+
<version>1.7.6</version>
189187
<scope>test</scope>
190188
</dependency>
191189

192190
<dependency>
193191
<groupId>org.slf4j</groupId>
194192
<artifactId>slf4j-api</artifactId>
195-
<version>1.7.2</version>
193+
<version>1.7.6</version>
196194
</dependency>
197195

198196
<dependency>
199197
<groupId>org.antlr</groupId>
200198
<artifactId>antlr-runtime</artifactId>
201-
<version>${antlr.version}</version>
199+
<version>3.4</version>
202200
</dependency>
203201

204202
<dependency>
@@ -211,7 +209,7 @@
211209
<dependency>
212210
<groupId>commons-io</groupId>
213211
<artifactId>commons-io</artifactId>
214-
<version>2.1</version>
212+
<version>2.4</version>
215213
</dependency>
216214

217215
<dependency>
@@ -223,7 +221,7 @@
223221
<dependency>
224222
<groupId>com.fasterxml.jackson.core</groupId>
225223
<artifactId>jackson-core</artifactId>
226-
<version>2.1.4</version>
224+
<version>2.3.2</version>
227225
</dependency>
228226

229227
<dependency>

0 commit comments

Comments
 (0)