Skip to content

Commit

Permalink
Updates dependencies to latest version.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cboehme committed Mar 1, 2014
1 parent c666bd8 commit 3ab7331
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<targetJdk>1.6</targetJdk>
<junit.version>4.11</junit.version>
<antlr.version>3.4</antlr.version>
</properties>

<scm>
Expand Down Expand Up @@ -167,7 +165,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<version>4.11</version>
</dependency>

<dependency>
Expand All @@ -179,26 +177,26 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.4</version>
<version>1.7</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.2</version>
<version>1.7.6</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
<version>1.7.6</version>
</dependency>

<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<version>${antlr.version}</version>
<version>3.4</version>
</dependency>

<dependency>
Expand All @@ -211,7 +209,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.1</version>
<version>2.4</version>
</dependency>

<dependency>
Expand All @@ -223,7 +221,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.1.4</version>
<version>2.3.2</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 3ab7331

Please sign in to comment.