diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 38 |
1 files changed, 35 insertions, 3 deletions
@@ -12,8 +12,12 @@ <name>EGIZ EAAF components</name> <properties> + <!-- General project properties --> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <java.version>1.8</java.version> + <!-- Project versions--> - <egiz.eaaf.version>1.0.6-snapshot</egiz.eaaf.version> + <egiz.eaaf.version>1.0.7</egiz.eaaf.version> <!-- ===================================================================== --> @@ -36,7 +40,14 @@ <javax.servlet-api>3.0.1</javax.servlet-api> <org.apache.velocity.version>1.7</org.apache.velocity.version> <javax.annotation-api>1.3.2</javax.annotation-api> - <jaxen.verion>1.1.6</jaxen.verion> + + <httpclient.version>4.5.7</httpclient.version> + <httpcore.version>4.4.11</httpcore.version> + + <com.fasterxml.jackson.core.version>2.9.8</com.fasterxml.jackson.core.version> + <org.bitbucket.b_c.jose4j.version>0.6.5</org.bitbucket.b_c.jose4j.version> + + <jaxen.verion>1.1.6</jaxen.verion> <xerces.version>2.11.0</xerces.version> <xalan.version>2.7.1</xalan.version> @@ -182,7 +193,28 @@ <artifactId>xalan</artifactId> <version>${xalan.version}</version> </dependency> - + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>${httpclient.version}</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>${httpcore.version}</version> + </dependency> + + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${com.fasterxml.jackson.core.version}</version> + </dependency> + <dependency> + <groupId>org.bitbucket.b_c</groupId> + <artifactId>jose4j</artifactId> + <version>${org.bitbucket.b_c.jose4j.version}</version> + </dependency> <!-- Testing --> <dependency> |