summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authordglFromAtt <dgl@research.att.com>2018-03-21 08:28:10 -0400
committerdglFromAtt <dgl@research.att.com>2018-03-21 08:28:22 -0400
commit24e3448b4673674e2fbd4e55603b1b67ac052182 (patch)
tree85c4e4f4906b67a5ecaefd3ca095dc2b0a94495f /pom.xml
parentf5cede4c4defaf0d04a07a297df51549799be0c1 (diff)
Modify for k8s deployment compatibility
There was a problem with signature using shade. Also simplified start script for k8s Change-Id: I8c3cda5d20a0db9840301168baea3c4b6606c9c4 Signed-off-by: dglFromAtt <dgl@research.att.com> Issue-ID: DMAAP-117
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 17 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 2eae015..25adb7d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.dmaap.buscontroller</groupId>
<artifactId>buscontroller</artifactId>
- <version>1.0.1</version>
+ <version>${artifact.version}</version>
<name>dmaap-buscontroller</name>
<parent>
<groupId>org.onap.oparent</groupId>
@@ -53,6 +53,20 @@
<goal>shade</goal>
</goals>
<configuration>
+ <!-- this filter section is needed to avoid runtime error:
+ java.lang.SecurityException: Invalid signature file digest for Manifest main attributes
+ suggestion found at: https://stackoverflow.com/q/999489
+ -->
+ <filters>
+ <filter>
+ <artifact>*:*</artifact>
+ <excludes>
+ <exclude>META-INF/*.SF</exclude>
+ <exclude>META-INF/*.DSA</exclude>
+ <exclude>META-INF/*.RSA</exclude>
+ </excludes>
+ </filter>
+ </filters>
<transformers>
<!-- NOTE: Need the following transformer else gets "Could not resolve type id 'https' into a subtype" error
Solution found from here:
@@ -256,7 +270,7 @@
<dependency>
<groupId>org.onap.dmaap.dbcapi</groupId>
<artifactId>dbcapi</artifactId>
- <version>1.0.1-SNAPSHOT</version>
+ <version>1.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
<reporting>
@@ -291,7 +305,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jettyVersion>9.3.7.v20160115</jettyVersion>
<eelf.version>0.0.1</eelf.version>
- <artifact.version>1.0.1</artifact.version>
+ <artifact.version>1.0.2</artifact.version>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
<sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>