summaryrefslogtreecommitdiffstats
path: root/workflow-designer-be/pom.xml
diff options
context:
space:
mode:
authortalig <talig@amdocs.com>2019-11-20 15:13:47 +0200
committertalig <talig@amdocs.com>2019-11-20 15:14:44 +0200
commitc54aacb32df8fcb27375d1b131f76afc0a34d0c7 (patch)
tree8f2f0d927051a65a391744af845fdd760fbd523a /workflow-designer-be/pom.xml
parent820f4ec65a28ed822d4205b05ac6fbbd910a46cc (diff)
Use versioning, zusammen and session libs from sdc-common-be
zusammen-lib in sdc-common-be uses cassandra 3.6.0 withoutJMXReporting (cassandra 3.4.0 with spring boot 2.1.0 caused: java.lang.NoClassDefFoundError: com/codahale/metrics/JmxReporter) Change-Id: I248442d519b2ad5f4869e9384e447e9004d24586 Issue-ID: SDC-2541 Signed-off-by: talig <talig@amdocs.com>
Diffstat (limited to 'workflow-designer-be/pom.xml')
-rw-r--r--workflow-designer-be/pom.xml74
1 files changed, 44 insertions, 30 deletions
diff --git a/workflow-designer-be/pom.xml b/workflow-designer-be/pom.xml
index 601f10ee..8dd35566 100644
--- a/workflow-designer-be/pom.xml
+++ b/workflow-designer-be/pom.xml
@@ -15,7 +15,7 @@
<properties>
<spring.boot.version>2.1.0.RELEASE</spring.boot.version>
- <mapstruct.version>1.2.0.Final</mapstruct.version>
+ <mapstruct.version>1.3.1.Final</mapstruct.version>
<lombok.version>1.18.0</lombok.version>
<springfox.version>2.8.0</springfox.version>
</properties>
@@ -73,11 +73,6 @@
</dependency>
<dependency>
<groupId>org.openecomp.sdc</groupId>
- <artifactId>openecomp-sdc-versioning-api</artifactId>
- <version>${onap.version}</version>
- </dependency>
- <dependency>
- <groupId>org.openecomp.sdc</groupId>
<artifactId>openecomp-sdc-logging-api</artifactId>
<version>${onap.version}</version>
</dependency>
@@ -98,35 +93,12 @@
<scope>runtime</scope>
</dependency>
<dependency>
- <groupId>org.openecomp.sdc</groupId>
- <artifactId>openecomp-sdc-versioning-core</artifactId>
- <version>${onap.version}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.openecomp.sdc.core</groupId>
- <artifactId>openecomp-zusammen-api</artifactId>
- <version>${onap.version}</version>
- </dependency>
- <dependency>
- <groupId>org.openecomp.sdc.core</groupId>
- <artifactId>openecomp-zusammen-core</artifactId>
- <version>${onap.version}</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-jdk8</artifactId>
+ <artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<dependency>
@@ -146,6 +118,48 @@
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-text</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>1.9</version>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.sdc.sdc-be-common</groupId>
+ <artifactId>session-lib</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.sdc.sdc-be-common</groupId>
+ <artifactId>versioning-lib</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-cassandra</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.sdc.sdc-be-common</groupId>
+ <artifactId>zusammen-lib</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-cassandra</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>