Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit c416940

Browse files
authored
Put dependency versions in properties (#467)
* Put snakeyaml version in property * Put okio version in property * Update Jackson to 2.17.2
1 parent 1e98df5 commit c416940

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@
6565
<maven.compiler.target>${java.version}</maven.compiler.target>
6666
<logback.version>1.2.13</logback.version>
6767
<json-path.version>2.9.0</json-path.version>
68-
<jackson-bom.version>2.17.1</jackson-bom.version>
68+
<okio.version>3.4.0</okio.version>
69+
<jackson-bom.version>2.17.2</jackson-bom.version>
70+
<snakeyaml.version>1.33</snakeyaml.version>
6971
</properties>
7072

7173
<modules>
@@ -88,7 +90,7 @@
8890
<dependency>
8991
<groupId>org.yaml</groupId>
9092
<artifactId>snakeyaml</artifactId>
91-
<version>1.33</version>
93+
<version>${snakeyaml.version}</version>
9294
</dependency>
9395
<dependency>
9496
<groupId>com.jayway.jsonpath</groupId>
@@ -98,7 +100,7 @@
98100
<dependency>
99101
<groupId>com.squareup.okio</groupId>
100102
<artifactId>okio</artifactId>
101-
<version>3.4.0</version>
103+
<version>${okio.version}</version>
102104
</dependency>
103105
<dependency>
104106
<groupId>io.fabric8</groupId>

0 commit comments

Comments
 (0)