Skip to content

Commit 114cadc

Browse files
committed
Bump dependencies and release 1.14.2
1 parent d82e859 commit 114cadc

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

.github/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ repositories {
3434
3535
dependencies {
3636
// Default
37-
implementation 'net.dzikoysk:cdn:1.14.1'
37+
implementation 'net.dzikoysk:cdn:1.14.2'
3838
// Kotlin wrapper
39-
implementation 'net.dzikoysk:cdn-kt:1.14.1'
39+
implementation 'net.dzikoysk:cdn-kt:1.14.2'
4040
}
4141
```
4242

cdn-kt/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<artifactId>cdn-parent</artifactId>
2121
<groupId>net.dzikoysk</groupId>
22-
<version>1.14.1</version>
22+
<version>1.14.2</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525

@@ -94,5 +94,4 @@
9494
</plugin>
9595
</plugins>
9696
</build>
97-
9897
</project>

cdn-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<artifactId>cdn-parent</artifactId>
2121
<groupId>net.dzikoysk</groupId>
22-
<version>1.14.1</version>
22+
<version>1.14.2</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525

cdn/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<artifactId>cdn-parent</artifactId>
2121
<groupId>net.dzikoysk</groupId>
22-
<version>1.14.1</version>
22+
<version>1.14.2</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525

@@ -56,19 +56,19 @@
5656
<dependency>
5757
<groupId>org.yaml</groupId>
5858
<artifactId>snakeyaml</artifactId>
59-
<version>1.32</version>
59+
<version>1.33</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.google.code.gson</groupId>
6464
<artifactId>gson</artifactId>
65-
<version>2.9.1</version>
65+
<version>2.10</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>com.fasterxml.jackson.core</groupId>
7070
<artifactId>jackson-databind</artifactId>
71-
<version>2.13.4</version>
71+
<version>2.14.0</version>
7272
<scope>test</scope>
7373
</dependency>
7474

@@ -108,5 +108,4 @@
108108
</plugin>
109109
</plugins>
110110
</build>
111-
112111
</project>

pom.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<groupId>net.dzikoysk</groupId>
2424
<artifactId>cdn-parent</artifactId>
2525
<packaging>pom</packaging>
26-
<version>1.14.1</version>
26+
<version>1.14.2</version>
2727

2828
<scm>
2929
<connection>scm:git:https://github.com/dzikoysk/cdn.git</connection>
@@ -60,10 +60,11 @@
6060
</distributionManagement>
6161

6262
<properties>
63-
<cdn.version>1.14.1</cdn.version>
64-
<expressible.version>1.2.2</expressible.version>
65-
<kotlin.version>1.6.21</kotlin.version>
63+
<cdn.version>1.14.2</cdn.version>
6664
<java.version>1.8</java.version>
65+
<expressible.version>1.2.2</expressible.version>
66+
<kotlin.version>1.7.10</kotlin.version>
67+
<junit.version>5.9.1</junit.version>
6768

6869
<maven.compiler.source>${java.version}</maven.compiler.source>
6970
<maven.compiler.target>${java.version}</maven.compiler.target>
@@ -128,13 +129,13 @@
128129
<dependency>
129130
<groupId>org.junit.jupiter</groupId>
130131
<artifactId>junit-jupiter-api</artifactId>
131-
<version>5.9.0</version>
132+
<version>${junit.version}</version>
132133
<scope>test</scope>
133134
</dependency>
134135
<dependency>
135136
<groupId>org.junit.jupiter</groupId>
136137
<artifactId>junit-jupiter-engine</artifactId>
137-
<version>5.9.0</version>
138+
<version>${junit.version}</version>
138139
<scope>test</scope>
139140
</dependency>
140141
</dependencies>
@@ -245,12 +246,12 @@
245246
<plugin>
246247
<groupId>org.apache.maven.plugins</groupId>
247248
<artifactId>maven-surefire-plugin</artifactId>
248-
<version>2.22.2</version>
249+
<version>3.0.0-M7</version>
249250
</plugin>
250251
<plugin>
251252
<groupId>org.apache.maven.plugins</groupId>
252253
<artifactId>maven-shade-plugin</artifactId>
253-
<version>3.3.0</version>
254+
<version>3.4.1</version>
254255
</plugin>
255256

256257
<!-- explicitly define maven-deploy-plugin after other to force exec order -->

0 commit comments

Comments
 (0)