Skip to content
Snippets Groups Projects
Commit 60ab78de authored by OZGCloud's avatar OZGCloud
Browse files

OZG-1518 use common dependencies for pluto-interface

parent d8be0eb8
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<version>0.18.0-SNAPSHOT</version> <version>0.18.0-SNAPSHOT</version>
<name>Pluto Interface</name> <name>Pluto Interface</name>
<description>Interface for Pluto Server</description> <description>Interface (gRPC) for Pluto Server</description>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
...@@ -18,45 +18,47 @@ ...@@ -18,45 +18,47 @@
<maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<grpc.version>1.39.0</grpc.version> <kop-common.version>0.0.1-SNAPSHOT</kop-common.version>
<protobuf.version>3.14.0</protobuf.version>
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
<mapstruct.version>1.4.2.Final</mapstruct.version>
<!-- plugins --> <protoc-jar-plugin.version>3.11.4</protoc-jar-plugin.version>
<protocol-buffer-plugin.version>0.6.1</protocol-buffer-plugin.version>
</properties> </properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.itvsh.kop</groupId>
<artifactId>kop-common-dependencies</artifactId>
<version>${kop-common.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<!-- TODO zentralize dep management -->
<version>5.3.9</version>
</dependency> </dependency>
<!-- GRPC --> <!-- GRPC -->
<dependency> <dependency>
<groupId>io.grpc</groupId> <groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId> <artifactId>grpc-stub</artifactId>
<version>${grpc.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.grpc</groupId> <groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId> <artifactId>grpc-protobuf</artifactId>
<version>${grpc.version}</version>
</dependency> </dependency>
<!-- Java 9+ compatibility --> <!-- Java 9+ compatibility -->
<dependency> <dependency>
<groupId>javax.annotation</groupId> <groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId> <artifactId>javax.annotation-api</artifactId>
<version>${javax.annotation-api.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mapstruct</groupId> <groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId> <artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
...@@ -72,7 +74,7 @@ ...@@ -72,7 +74,7 @@
<plugin> <plugin>
<groupId>com.github.os72</groupId> <groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId> <artifactId>protoc-jar-maven-plugin</artifactId>
<version>3.11.4</version> <version>${protoc-jar-plugin.version}</version>
<executions> <executions>
<execution> <execution>
<phase>generate-sources</phase> <phase>generate-sources</phase>
...@@ -132,14 +134,6 @@ ...@@ -132,14 +134,6 @@
</plugins> </plugins>
</build> </build>
<repositories>
<repository>
<id>ozg-nexus</id>
<name>ozg nexus</name>
<url>https://nexus.ozg-sh.de/repository/ozg-group/</url>
</repository>
</repositories>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>ozg-nexus</id> <id>ozg-nexus</id>
...@@ -147,7 +141,7 @@ ...@@ -147,7 +141,7 @@
<url>https://nexus.ozg-sh.de/repository/ozg-releases/</url> <url>https://nexus.ozg-sh.de/repository/ozg-releases/</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>ozg-nexus</id> <id>ozg-snapshots-nexus</id>
<name>ozg-snapshots</name> <name>ozg-snapshots</name>
<url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url> <url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url>
</snapshotRepository> </snapshotRepository>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment