diff options
author | Rob Daugherty <rd472p@att.com> | 2017-11-16 15:42:27 -0500 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-11-16 15:42:27 -0500 |
commit | 39585232972e6b920215291b3b4700ce6f6b5be3 (patch) | |
tree | be7d256234b1c4fe01f7baceac17aa3edac1a23a /bpmn | |
parent | 30345e801efc106b125a27ab9f1deff1cc5fb62d (diff) |
Remove unused dependency on dmaapClient
A prior change created our own dmaap client, so we don't
need the one provided by com.att.nsa. That one included
the dme2 jar, which was causing classloading conflicts.
Issue: SO-208
Change-Id: Ia0af70c060044d7c10b1ad9ba8ed2bf8385dd0a4
Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'bpmn')
-rw-r--r-- | bpmn/MSOCommonBPMN/pom.xml | 5 | ||||
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/pom.xml | 14 |
2 files changed, 1 insertions, 18 deletions
diff --git a/bpmn/MSOCommonBPMN/pom.xml b/bpmn/MSOCommonBPMN/pom.xml index f589f03b83..b60e6219e7 100644 --- a/bpmn/MSOCommonBPMN/pom.xml +++ b/bpmn/MSOCommonBPMN/pom.xml @@ -485,11 +485,6 @@ <version>1.10.19</version> </dependency> <dependency> - <groupId>com.att.nsa</groupId> - <artifactId>dmaapClient</artifactId> - <version>0.2.12</version> - </dependency> - <dependency> <!-- Optional Plugin for Camunda BPM Workbench --> <groupId>org.camunda.bpm.workbench</groupId> <artifactId>camunda-workbench-dist-embeddable</artifactId> diff --git a/bpmn/MSOInfrastructureBPMN/pom.xml b/bpmn/MSOInfrastructureBPMN/pom.xml index 06592276de..36de61b516 100644 --- a/bpmn/MSOInfrastructureBPMN/pom.xml +++ b/bpmn/MSOInfrastructureBPMN/pom.xml @@ -289,23 +289,11 @@ <groupId>org.openecomp.so</groupId>
<artifactId>MSOCommonBPMN</artifactId>
<version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.att.nsa</groupId>
- <artifactId>dmaapClient</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
+ </dependency>
<dependency>
<groupId>org.openecomp.so</groupId>
<artifactId>MSOCommonBPMN</artifactId>
<version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.att.nsa</groupId>
- <artifactId>dmaapClient</artifactId>
- </exclusion>
- </exclusions>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
|