aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-06-06 13:47:21 +0200
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2018-06-06 14:22:52 +0200
commit7a58af870eb9934dfec4b5353672d7c428208116 (patch)
tree67763a011cbc4c0f94405864dd19f2fd7f07b839 /pom.xml
parent6b6521b5824f61dea05f400dba41092f3aaa0697 (diff)
Minor Improvement
Code rework postponed to Casablanca to not impact Bejing release + Update version to 3.0.0 Issue-ID: CLAMP-177 Change-Id: I3e2cb22c1158df0cf5d4cf8369f9c469004d68c0 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml51
1 files changed, 48 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 449b71a8e..a1f02114d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.clamp</groupId>
<artifactId>clds</artifactId>
- <version>2.0.2-SNAPSHOT</version>
+ <version>3.0.0-SNAPSHOT</version>
<name>clamp</name>
<parent>
@@ -87,6 +87,7 @@
<docker.skip.tag>true</docker.skip.tag>
<skip.staging.artifacts>false</skip.staging.artifacts>
<python.http.proxy.param></python.http.proxy.param>
+ <tomcat.version>8.5.28</tomcat.version>
</properties>
<distributionManagement>
@@ -180,6 +181,26 @@
<artifactId>eelf-core</artifactId>
<version>${eelf.core.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.tomcat.embed</groupId>
+ <artifactId>tomcat-embed-core</artifactId>
+ <version>${tomcat.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tomcat.embed</groupId>
+ <artifactId>tomcat-embed-el</artifactId>
+ <version>${tomcat.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tomcat.embed</groupId>
+ <artifactId>tomcat-embed-websocket</artifactId>
+ <version>${tomcat.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tomcat</groupId>
+ <artifactId>tomcat-annotations-api</artifactId>
+ <version>${tomcat.version}</version>
+ </dependency>
<!-- For CAMEL -->
<dependency>
<groupId>org.apache.camel</groupId>
@@ -887,7 +908,11 @@
<goal>build</goal>
</goals>
<configuration>
- <image>onap/clamp</image>
+ <images>
+ <image>
+ <alias>onap-clamp</alias>
+ </image>
+ </images>
</configuration>
</execution>
<execution>
@@ -897,7 +922,11 @@
<goal>push</goal>
</goals>
<configuration>
- <image>onap/clamp</image>
+ <images>
+ <image>
+ <alias>onap-clamp</alias>
+ </image>
+ </images>
</configuration>
</execution>
<execution>
@@ -908,6 +937,14 @@
</goals>
<configuration>
<skip>${skipITs}</skip>
+ <images>
+ <image>
+ <alias>mariadb</alias>
+ </image>
+ <image>
+ <alias>python</alias>
+ </image>
+ </images>
</configuration>
</execution>
<execution>
@@ -918,6 +955,14 @@
</goals>
<configuration>
<skip>${skipITs}</skip>
+ <images>
+ <image>
+ <alias>mariadb</alias>
+ </image>
+ <image>
+ <alias>python</alias>
+ </image>
+ </images>
</configuration>
</execution>
</executions>