diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-01-29 16:53:17 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-01-29 21:56:48 +0000 |
commit | 1fe99c6fa24ef00a9652a4e6798a93fd5950273e (patch) | |
tree | 975a99f2a88603a36906c745bbe4c2ec64cb3d52 | |
parent | 6ba4d84b42cc3ed381d16ee72dd6e5864e01dfc4 (diff) |
Update parent for proto-definition
Avoid pulling transitive dependencies.
Change-Id: I91530307817231c3b15459539e433cf97f3e4dce
Issue-ID: CCSDK-947
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
-rw-r--r-- | components/model-catalog/proto-definition/pom.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/components/model-catalog/proto-definition/pom.xml b/components/model-catalog/proto-definition/pom.xml index c92893929..4680f6291 100644 --- a/components/model-catalog/proto-definition/pom.xml +++ b/components/model-catalog/proto-definition/pom.xml @@ -19,12 +19,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.onap.ccsdk.apps.components</groupId> - <artifactId>parent</artifactId> + <groupId>org.onap.ccsdk.apps</groupId> + <artifactId>ccsdk-apps</artifactId> <version>0.4.1-SNAPSHOT</version> - <relativePath>../../parent</relativePath> + <relativePath>../../../</relativePath> </parent> + <groupId>org.onap.ccsdk.apps.components</groupId> <artifactId>proto-definition</artifactId> <packaging>jar</packaging> @@ -35,14 +36,17 @@ <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> + <version>1.17.1</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> + <version>1.17.1</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> + <version>3.6.1</version> </dependency> </dependencies> |