summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-server/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-server/pom.xml')
-rw-r--r--sdc-workflow-designer-server/pom.xml71
1 files changed, 61 insertions, 10 deletions
diff --git a/sdc-workflow-designer-server/pom.xml b/sdc-workflow-designer-server/pom.xml
index 6ecf11c3..8bfed82a 100644
--- a/sdc-workflow-designer-server/pom.xml
+++ b/sdc-workflow-designer-server/pom.xml
@@ -26,15 +26,18 @@
<packaging>jar</packaging>
<properties>
- <velocity.version>1.7</velocity.version>
- <commons-io.version>2.4</commons-io.version>
- <dom4j.version>1.6.1</dom4j.version>
<dropwizard.version>1.2.2</dropwizard.version>
<swagger.version>1.5.3</swagger.version>
<jersey.version>2.16</jersey.version>
<jaxrs.consumer.version>5.0</jaxrs.consumer.version>
<gson.version>2.2.4</gson.version>
+ <hibernate-validator.version>5.4.2.Final</hibernate-validator.version>
+ <jackson-databind.version>2.9.2</jackson-databind.version>
<junit.version>4.10</junit.version>
+ <velocity.version>1.7</velocity.version>
+ <commons-collections.version>3.2.2</commons-collections.version>
+ <commons-io.version>2.4</commons-io.version>
+ <dom4j.version>1.6.1</dom4j.version>
</properties>
<build>
@@ -106,7 +109,28 @@
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${jackson-databind.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>${hibernate-validator.version}</version>
</dependency>
+
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-assets</artifactId>
@@ -117,6 +141,16 @@
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-xml</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ </exclusions>
<version>${swagger.version}</version>
</dependency>
@@ -143,6 +177,19 @@
<version>${commons-io.version}</version>
</dependency>
+ <!-- consumer -->
+ <dependency>
+ <groupId>com.eclipsesource.jaxrs</groupId>
+ <artifactId>consumer</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>com.eclipsesource.jaxrs</groupId>
+ <artifactId>jersey-all</artifactId>
+ </exclusion>
+ </exclusions>
+ <version>${jaxrs.consumer.version}</version>
+ </dependency>
+
<!-- gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
@@ -150,17 +197,21 @@
<version>${gson.version}</version>
</dependency>
- <!-- consumer -->
- <dependency>
- <groupId>com.eclipsesource.jaxrs</groupId>
- <artifactId>consumer</artifactId>
- <version>${jaxrs.consumer.version}</version>
- </dependency>
-
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>${velocity.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>${commons-collections.version}</version>
</dependency>
<dependency>