Skip to content

Commit a646b7c

Browse files
committed
Merge branch 'release/2025.10.0'
2 parents 9fb751d + 80fff38 commit a646b7c

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ are included.
6464
|-----------------------|------------|----------------------|
6565
| api-guardian | `1.1.2` | api annotations |
6666
| jetbrains-annotations | `26.0.2-1` | common annotations |
67-
| assertj | `3.27.4` | bom, test assertions |
67+
| assertj | `3.27.6` | bom, test assertions |
6868
| awaitility | `4.3.0` | async testing |
6969
| jgiven | `2.0.3` | BDD testing |
70-
| junit5 | `5.13.4` | bom, unit testing |
71-
| mockito-kotlin | `6.0.0` | test, mocking |
70+
| junit | `6.0.0` | bom, unit testing |
71+
| mockito-kotlin | `6.1.0` | test, mocking |
7272

7373
## Plugins
7474

@@ -77,14 +77,14 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
7777
| Plugin | Version | Info |
7878
|---------------------------------------------------------------------------------------------------------------------------|----------|---------------------------------------------|
7979
| [maven-compiler](https://maven.apache.org/plugins/maven-compiler-plugin/) | `3.14.1` | disabling java compiler for kotlin projects |
80-
| [kotlin-maven-plugin](https://kotlinlang.org/docs/maven.html) | `2.0.0` | kotlin compiler plugin |
80+
| [kotlin-maven-plugin](https://kotlinlang.org/docs/maven.html) | `2.2.0` | kotlin compiler plugin |
8181
| [maven-javadoc](https://maven.apache.org/plugins/maven-javadoc-plugin/) | `3.12.0` | include javadoc |
8282
| [dokka](https://kotlinlang.org/docs/dokka-maven.html#apply-dokka) | `2.0.0` | use dokka for javadoc |
8383
| [avro-maven](https://avro.apache.org/docs/1.12.0/getting-started-java/) | `1.12.0` | avro code generation |
8484
| [maven-clean](https://maven.apache.org/plugins/maven-clean-plugin/) | `3.5.0` | clean project |
85-
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.8.1` | check/update dependency versions |
85+
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.9.0` | check/update dependency versions |
8686
| [maven-deploy](https://maven.apache.org/plugins/maven-deploy-plugin/) | `3.1.4` | - |
87-
| [maven-enforcer](https://maven.apache.org/enforcer/maven-enforcer-plugin/) | `3.6.1` | enforce project setup |
87+
| [maven-enforcer](https://maven.apache.org/enforcer/maven-enforcer-plugin/) | `3.6.2` | enforce project setup |
8888
| [maven-failsafe](https://maven.apache.org/surefire/maven-failsafe-plugin/) | `3.5.4` | testing |
8989
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | `3.2.8` | sign artifacts for release |
9090
| [maven-install](https://maven.apache.org/plugins/maven-install-plugin/) | `3.1.4` | - |
@@ -96,12 +96,12 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
9696
| [build-helper](https://www.mojohaus.org/build-helper-maven-plugin/) | `3.6.1` | define source directories |
9797
| [gitflow-maven](https://aleksandr-m.github.io/gitflow-maven-plugin/) | `1.21.0` | gitflow relase master/develop/release |
9898
| [jacoco-maven](https://www.eclemma.org/jacoco/trunk/doc/maven.html) | `0.8.13` | test reports |
99-
| [jgiven-maven](https://jgiven.org/userguide/#_maven) | `2.0.2` | jgiven test reports |
100-
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.15.0` | openapi/swagger code generation |
99+
| [jgiven-maven](https://jgiven.org/userguide/#_maven) | `2.0.3` | jgiven test reports |
100+
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.16.0` | openapi/swagger code generation |
101101
| [properties-maven](https://www.mojohaus.org/properties-maven-plugin/) | `1.2.1` | generate build properties for project |
102102
| [versions-maven](https://www.mojohaus.org/versions/versions-maven-plugin/index.html) | `2.19.1` | modify versions of project |
103103
| [central-publishing](https://central.sonatype.org/publish/publish-portal-maven/) | `0.9.0` | release on maven central |
104-
| [nexus-staging-maven](https://github.com/sonatype/nexus-maven-plugins/blob/main/staging/maven-plugin/README.md) | `1.6.13` | release on maven central |
104+
| [nexus-staging-maven](https://github.com/sonatype/nexus-maven-plugins/blob/main/staging/maven-plugin/README.md) | `1.7.0` | release on maven central |
105105
| [maven-wrapper](https://maven.apache.org/wrapper/maven-wrapper-plugin/plugin-info.html) | `3.3.4` | execute maven without central installation |
106106
| [flatten-maven](https://www.mojohaus.org/flatten-maven-plugin/) | `1.7.3` | flatten the released pom |
107107

pom.xml

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

88
<groupId>io.toolisticon.maven.parent</groupId>
99
<artifactId>maven-parent-kotlin-base</artifactId>
10-
<version>2025.9.3</version>
10+
<version>2025.10.0</version>
1111

1212
<name>Maven Parent - Kotlin Base</name>
1313
<description>Maven parent for a holistic kotlin lib project.</description>
@@ -69,8 +69,8 @@
6969
<assertj.version>3.27.6</assertj.version>
7070
<awaitility.version>4.3.0</awaitility.version>
7171
<jgiven.version>2.0.3</jgiven.version>
72-
<junit5.version>5.13.4</junit5.version>
73-
<mockito-kotlin.version>6.0.0</mockito-kotlin.version>
72+
<junit5.version>6.0.0</junit5.version>
73+
<mockito-kotlin.version>6.1.0</mockito-kotlin.version>
7474
<!-- endregion [TEST VERSIONS] -->
7575
</properties>
7676

@@ -632,7 +632,7 @@
632632
<plugin>
633633
<groupId>org.apache.maven.plugins</groupId>
634634
<artifactId>maven-dependency-plugin</artifactId>
635-
<version>3.8.1</version>
635+
<version>3.9.0</version>
636636
</plugin>
637637

638638
<!-- DEPLOY (version, config) -->
@@ -656,7 +656,7 @@
656656
<plugin>
657657
<groupId>org.apache.maven.plugins</groupId>
658658
<artifactId>maven-enforcer-plugin</artifactId>
659-
<version>3.6.1</version>
659+
<version>3.6.2</version>
660660
<executions>
661661
<execution>
662662
<id>enforce-maven</id>
@@ -929,7 +929,7 @@
929929
<plugin>
930930
<groupId>org.openapitools</groupId>
931931
<artifactId>openapi-generator-maven-plugin</artifactId>
932-
<version>7.15.0</version>
932+
<version>7.16.0</version>
933933
</plugin>
934934

935935
<!-- [GENERATOR]: PROPERTIES (writes maven properties to src) (version,execution) -->

0 commit comments

Comments
 (0)