Skip to content

Commit

Permalink
snake-yaml to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginxo committed Aug 30, 2023
1 parent 3bb2065 commit 30a19b7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build/optaplanner-build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<!-- Versions plugin should stay on version 2.5
until https://github.com/mojohaus/versions-maven-plugin/issues/312 is fixed -->
<version.versions.plugin>2.5</version.versions.plugin>
<version.org.yaml.snakeyaml>2.0</version.org.yaml.snakeyaml>
<!-- This property needs to be defined in all modules that use the packaging 'jar'.
It is used by different plugins to make sure the module/bundle names are consistent. -->
<java.module.name/>
Expand Down Expand Up @@ -207,6 +208,11 @@
<artifactId>assertj-core</artifactId>
<version>${version.org.assertj}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${version.org.yaml.snakeyaml}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-deployment</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
Expand All @@ -74,6 +80,12 @@
<artifactId>drools-core-dynamic</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-deployment</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
Expand Down Expand Up @@ -82,6 +88,12 @@
<artifactId>drools-core-dynamic</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 30a19b7

Please sign in to comment.