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 | 6e3d75072efde3e93c54d340311a86a949f061b5 (patch) | |
tree | 8c5bae26011bdb5c22eeb5c64384847e21442291 /components/model-catalog | |
parent | e5c31f5b7481186b4d1920847bfc3c11e222f6e9 (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>
Diffstat (limited to 'components/model-catalog')
-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 c9289392..4680f629 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> |