aboutsummaryrefslogtreecommitdiffstats
path: root/sources/hv-collector-domain/pom.xml
diff options
context:
space:
mode:
authorFilip Krzywka <filip.krzywka@nokia.com>2019-02-13 11:09:38 +0100
committerFilip Krzywka <filip.krzywka@nokia.com>2019-02-14 08:51:05 +0100
commit7b4e5e94ce9533fb9bcb53a764eeb63e7a0bef00 (patch)
tree8850936daf8e23fa6564b339f00ee8cc596f3e5b /sources/hv-collector-domain/pom.xml
parent011aed6aa0f9265739e5e2d2fe35ddefde4ff255 (diff)
Use protobuf definitions from SDK
Change-Id: I22163f3239769070e1e04c8d0e8f0da179069632 Issue-ID: DCAEGEN2-1218 Signed-off-by: Filip Krzywka <filip.krzywka@nokia.com>
Diffstat (limited to 'sources/hv-collector-domain/pom.xml')
-rw-r--r--sources/hv-collector-domain/pom.xml40
1 files changed, 5 insertions, 35 deletions
diff --git a/sources/hv-collector-domain/pom.xml b/sources/hv-collector-domain/pom.xml
index f60cb604..4e01be3f 100644
--- a/sources/hv-collector-domain/pom.xml
+++ b/sources/hv-collector-domain/pom.xml
@@ -3,7 +3,7 @@
~ ============LICENSE_START=======================================================
~ dcaegen2-collectors-veshv
~ ================================================================================
- ~ Copyright (C) 2018 NOKIA
+ ~ Copyright (C) 2018-2019 NOKIA
~ ================================================================================
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
@@ -58,40 +58,15 @@
<artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>com.github.os72</groupId>
- <artifactId>protoc-jar-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <protocArtifact>com.google.protobuf:protoc:${protobuf.version}</protocArtifact>
- <inputDirectories>
- <include>${project.basedir}/src/main/proto/event</include>
- </inputDirectories>
- <outputTargets>
- <outputTarget>
- <type>java</type>
- <addSources>none</addSources>
- <outputDirectory>${protobuf-generated-files.directory}</outputDirectory>
- </outputTarget>
- </outputTargets>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
<dependencies>
<dependency>
+ <groupId>org.onap.dcaegen2.services.sdk</groupId>
+ <artifactId>hvvesclient-protobuf</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
@@ -100,10 +75,6 @@
<artifactId>reactor-netty</artifactId>
</dependency>
<dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </dependency>
- <dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-core</artifactId>
</dependency>
@@ -127,5 +98,4 @@
</dependency>
</dependencies>
-
</project>