Skip to content

Commit c61982f

Browse files
committed
Merge branch 'release/2024.12.2'
2 parents 0f69cc4 + c52ebae commit c61982f

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ are included.
4949

5050
### Language
5151

52-
| Type | Version | Info |
53-
|-----------------------|----------|-------------------------------------------|
54-
| kotlin | `2.0.21` | used in kotlin compiler und kotlin libs. |
55-
| java | `17` | compile target |
56-
| kotlinx-coroutines | `1.9.0` | all BOM libs explicitly listed |
57-
| kotlinx-serialization | `1.7.3` | all BOM libs explicitly listed |
58-
| kotlin-logging | `3.0.5` | logging support |
52+
| Type | Version | Info |
53+
|-----------------------|---------|-------------------------------------------|
54+
| kotlin | `2.1.0` | used in kotlin compiler und kotlin libs. |
55+
| java | `17` | compile target |
56+
| kotlinx-coroutines | `1.9.1` | all BOM libs explicitly listed |
57+
| kotlinx-serialization | `1.7.3` | all BOM libs explicitly listed |
58+
| kotlin-logging | `3.0.5` | logging support |
5959

6060
## Libs
6161

6262
| Lib | Version | Info |
6363
|--------|----------|--------------------------------------|
64-
| jetbrains-annotations | `26.0.1` | common annotations |
65-
| junit5 | `5.11.3` | bom dependency, unit testing |
64+
| jetbrains-annotations | `26.0.1` | common annotations |
65+
| junit5 | `5.11.4` | bom dependency, unit testing |
6666

6767
## Plugins
6868

@@ -72,8 +72,8 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
7272
|----------------------------------------------------------------------------------------------------------------------------|----------|---------------------------------------------|
7373
| [maven-compiler](https://maven.apache.org/plugins/maven-compiler-plugin/) | `3.13.0` | disabling java compiler for kotlin projects |
7474
| [kotlin-maven-plugin](https://kotlinlang.org/docs/maven.html) | `2.0.0` | kotlin compiler plugin |
75-
| [maven-javadoc](https://maven.apache.org/plugins/maven-javadoc-plugin/) | `3.11.1` | include javadoc |
76-
| [dokka](https://kotlinlang.org/docs/dokka-maven.html#apply-dokka) | `1.9.20` | use dokka for javadoc |
75+
| [maven-javadoc](https://maven.apache.org/plugins/maven-javadoc-plugin/) | `3.11.2` | include javadoc |
76+
| [dokka](https://kotlinlang.org/docs/dokka-maven.html#apply-dokka) | `2.0.0` | use dokka for javadoc |
7777
| [avro-maven](https://avro.apache.org/docs/1.11.1/getting-started-java/) | `1.12.0` | avro code generation |
7878
| [maven-clean](https://maven.apache.org/plugins/maven-clean-plugin/) | `3.4.0` | clean project |
7979
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.8.1` | check/update dependency versions |
@@ -89,8 +89,8 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
8989
| [build-helper](https://www.mojohaus.org/build-helper-maven-plugin/) | `3.6.0` | define source directories |
9090
| [gitflow-maven](https://aleksandr-m.github.io/gitflow-maven-plugin/) | `1.21.0` | gitflow relase master/develop/release |
9191
| [jacoco-maven](https://www.eclemma.org/jacoco/trunk/doc/maven.html) | `0.8.12` | test reports |
92-
| [jgiven-maven](https://jgiven.org/userguide/#_maven) | `1.3.1` | jgiven test reports |
93-
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.9.0` | openapi/swagger code generation |
92+
| [jgiven-maven](https://jgiven.org/userguide/#_maven) | `2.0.1` | jgiven test reports |
93+
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.10.0` | openapi/swagger code generation |
9494
| [properties-maven](https://www.mojohaus.org/properties-maven-plugin/) | `1.2.1` | generate build properties for project |
9595
| [versions-maven](https://www.mojohaus.org/versions/versions-maven-plugin/index.html) | `2.18.0` | modify versions of project |
9696
| [nexus-staging-maven](https://github.com/sonatype/nexus-maven-plugins/blob/main/staging/maven-plugin/README.md) | `1.6.13` | release on maven central |

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.toolisticon.maven.parent</groupId>
66
<artifactId>maven-parent-kotlin-base</artifactId>
7-
<version>2024.12.1</version>
7+
<version>2024.12.2</version>
88

99
<name>Maven Parent - Kotlin Base</name>
1010
<description>Maven parent for a holistic kotlin lib project.</description>
@@ -48,13 +48,13 @@
4848
<jdk.version>17</jdk.version>
4949

5050
<kotlinx-serialization.version>1.7.3</kotlinx-serialization.version>
51-
<kotlinx-coroutines.version>1.9.0</kotlinx-coroutines.version>
51+
<kotlinx-coroutines.version>1.10.1</kotlinx-coroutines.version>
5252
<kotlin-logging.version>3.0.5</kotlin-logging.version>
5353

5454
<jetbrains-annotations.version>26.0.1</jetbrains-annotations.version>
5555

5656
<!-- TEST -->
57-
<junit5.version>5.11.3</junit5.version>
57+
<junit5.version>5.11.4</junit5.version>
5858
</properties>
5959

6060
<dependencyManagement>
@@ -527,7 +527,7 @@
527527
<plugin>
528528
<groupId>org.apache.maven.plugins</groupId>
529529
<artifactId>maven-javadoc-plugin</artifactId>
530-
<version>3.11.1</version>
530+
<version>3.11.2</version>
531531
<executions>
532532
<execution>
533533
<id>attach-javadocs</id>
@@ -545,7 +545,7 @@
545545
<plugin>
546546
<groupId>org.jetbrains.dokka</groupId>
547547
<artifactId>dokka-maven-plugin</artifactId>
548-
<version>1.9.20</version>
548+
<version>2.0.0</version>
549549
<executions>
550550
<execution>
551551
<phase>package</phase>
@@ -837,7 +837,7 @@
837837
<plugin>
838838
<groupId>com.tngtech.jgiven</groupId>
839839
<artifactId>jgiven-maven-plugin</artifactId>
840-
<version>1.3.1</version>
840+
<version>2.0.1</version>
841841
<executions>
842842
<execution>
843843
<id>generate-report</id>

0 commit comments

Comments
 (0)