Skip to content

Commit

Permalink
Bump dependencies and release 1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Dec 30, 2022
1 parent d82e859 commit 114cadc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ repositories {
dependencies {
// Default
implementation 'net.dzikoysk:cdn:1.14.1'
implementation 'net.dzikoysk:cdn:1.14.2'
// Kotlin wrapper
implementation 'net.dzikoysk:cdn-kt:1.14.1'
implementation 'net.dzikoysk:cdn-kt:1.14.2'
}
```

Expand Down
3 changes: 1 addition & 2 deletions cdn-kt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>cdn-parent</artifactId>
<groupId>net.dzikoysk</groupId>
<version>1.14.1</version>
<version>1.14.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -94,5 +94,4 @@
</plugin>
</plugins>
</build>

</project>
2 changes: 1 addition & 1 deletion cdn-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>cdn-parent</artifactId>
<groupId>net.dzikoysk</groupId>
<version>1.14.1</version>
<version>1.14.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
9 changes: 4 additions & 5 deletions cdn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>cdn-parent</artifactId>
<groupId>net.dzikoysk</groupId>
<version>1.14.1</version>
<version>1.14.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -56,19 +56,19 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.32</version>
<version>1.33</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.1</version>
<version>2.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.4</version>
<version>2.14.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -108,5 +108,4 @@
</plugin>
</plugins>
</build>

</project>
17 changes: 9 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<groupId>net.dzikoysk</groupId>
<artifactId>cdn-parent</artifactId>
<packaging>pom</packaging>
<version>1.14.1</version>
<version>1.14.2</version>

<scm>
<connection>scm:git:https://github.com/dzikoysk/cdn.git</connection>
Expand Down Expand Up @@ -60,10 +60,11 @@
</distributionManagement>

<properties>
<cdn.version>1.14.1</cdn.version>
<expressible.version>1.2.2</expressible.version>
<kotlin.version>1.6.21</kotlin.version>
<cdn.version>1.14.2</cdn.version>
<java.version>1.8</java.version>
<expressible.version>1.2.2</expressible.version>
<kotlin.version>1.7.10</kotlin.version>
<junit.version>5.9.1</junit.version>

<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
Expand Down Expand Up @@ -128,13 +129,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -245,12 +246,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0-M7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
</plugin>

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

0 comments on commit 114cadc

Please sign in to comment.