Skip to content

Commit

Permalink
EASY-1945: upgrade dependencies (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrolke authored Mar 13, 2020
1 parent d7cab42 commit ccf0c6b
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>nl.knaw.dans.shared</groupId>
<artifactId>dans-java-project</artifactId>
<version>5.1.0</version>
<version>6.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>nl.knaw.dans.easy</groupId>
Expand All @@ -15,6 +15,12 @@
Common Server Library with interfaces to be implemented by servers
wishing to provide SWORD v2 support
</description>
<properties>
<log4j.version>1.2.17</log4j.version>
<abdera.version>1.1.3</abdera.version>
<jena.version>2.6.4</jena.version>
<xom.version>1.3.4</xom.version>
</properties>
<scm>
<developerConnection>scm:git:https://github.com/DANS-KNAW/${project.artifactId}</developerConnection>
<tag>HEAD</tag>
Expand All @@ -28,15 +34,6 @@
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -100,13 +97,12 @@
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<version>${log4j.version}</version>
<exclusions>
<exclusion>
<groupId>javax.mail</groupId>
Expand All @@ -129,7 +125,7 @@
<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-client</artifactId>
<version>1.1.1</version>
<version>${abdera.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
Expand All @@ -142,12 +138,12 @@
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>jena</artifactId>
<version>2.6.4</version>
<version>${jena.version}</version>
</dependency>
<dependency>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
<version>1.1</version>
<version>${xom.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit ccf0c6b

Please sign in to comment.