Skip to content
Snippets Groups Projects
Commit 6a47d180 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-2644 impl PR comment: move jsoup dependency declaration to goofy dependencyManagement

parent 24f7046b
Branches
Tags
No related merge requests found
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<spring-boot.build-image.imageName>docker.ozg-sh.de/goofy:build-latest</spring-boot.build-image.imageName> <spring-boot.build-image.imageName>docker.ozg-sh.de/goofy:build-latest</spring-boot.build-image.imageName>
<!-- TODO version ins kop-common umziehen?! -->
<jsoup.version>1.15.1</jsoup.version>
</properties> </properties>
<dependencies> <dependencies>
...@@ -100,7 +98,6 @@ ...@@ -100,7 +98,6 @@
<dependency> <dependency>
<groupId>org.jsoup</groupId> <groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId> <artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency> </dependency>
<!-- aspectJ --> <!-- aspectJ -->
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<pluto.version>0.27.0-SNAPSHOT</pluto.version> <pluto.version>0.27.0-SNAPSHOT</pluto.version>
<jsoup.version>1.15.1</jsoup.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -39,6 +40,11 @@ ...@@ -39,6 +40,11 @@
<artifactId>pluto-utils</artifactId> <artifactId>pluto-utils</artifactId>
<version>${pluto.version}</version> <version>${pluto.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment