From e26071170bc9d2575a859eb602a0772702375b70 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Wed, 8 Jun 2022 17:14:04 +0200 Subject: [PATCH] OZG-1517 cleanup pom - use common-dependencies as parent --- pluto-interface/pom.xml | 12 ++++++++---- pluto-utils/pom.xml | 2 ++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/pluto-interface/pom.xml b/pluto-interface/pom.xml index b0851c7ea..2015247bc 100644 --- a/pluto-interface/pom.xml +++ b/pluto-interface/pom.xml @@ -1,6 +1,14 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>de.itvsh.kop.common</groupId> + <artifactId>kop-common-dependencies</artifactId> + <version>1.1.1-SNAPSHOT</version> + <relativePath /> + </parent> + + <groupId>de.itvsh.ozg.pluto</groupId> <artifactId>pluto-interface</artifactId> <version>0.25.0-SNAPSHOT</version> @@ -15,10 +23,6 @@ <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> - - <kop-common.version>1.1.0</kop-common.version> - - <protoc-jar-plugin.version>3.11.4</protoc-jar-plugin.version> </properties> <dependencyManagement> diff --git a/pluto-utils/pom.xml b/pluto-utils/pom.xml index 93b26b685..8f42b0b10 100644 --- a/pluto-utils/pom.xml +++ b/pluto-utils/pom.xml @@ -15,6 +15,8 @@ <properties> <pluto.version>0.25.0-SNAPSHOT</pluto.version> + + <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> </properties> <dependencies> -- GitLab