Skip to content

Commit 1688227

Browse files
committed
Merge branch 'release/2024.8.2'
2 parents 5d0e549 + 73fcf12 commit 1688227

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ are included.
6060
| Lib | Version | Info |
6161
|--------|----------|--------------------------------------|
6262
| jetbrains-annotations | `24.1.0` | common annotations |
63-
| junit5 | `5.10.3` | bom dependency, unit testing |
63+
| junit5 | `5.11.0` | bom dependency, unit testing |
6464

6565
## Plugins
6666

@@ -75,20 +75,20 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
7575
| [avro-maven](https://avro.apache.org/docs/1.11.1/getting-started-java/) | `1.12.0` | avro code generation |
7676
| [maven-clean](https://maven.apache.org/plugins/maven-clean-plugin/) | `3.4.0` | clean project |
7777
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.7.1` | check/update dependency versions |
78-
| [maven-deploy](https://maven.apache.org/plugins/maven-deploy-plugin/) | `3.1.2` | - |
78+
| [maven-deploy](https://maven.apache.org/plugins/maven-deploy-plugin/) | `3.1.3` | - |
7979
| [maven-enforcer](https://maven.apache.org/enforcer/maven-enforcer-plugin/) | `3.4.1` | enforce project setup |
80-
| [maven-failsafe](https://maven.apache.org/surefire/maven-failsafe-plugin/) | `3.3.1` | testing |
81-
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | `3.2.4` | sign artifacts for release |
82-
| [maven-install](https://maven.apache.org/plugins/maven-install-plugin/) | `3.1.2` | - |
80+
| [maven-failsafe](https://maven.apache.org/surefire/maven-failsafe-plugin/) | `3.4.0` | testing |
81+
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | `3.2.5` | sign artifacts for release |
82+
| [maven-install](https://maven.apache.org/plugins/maven-install-plugin/) | `3.1.3` | - |
8383
| [maven-jar-plugin](https://maven.apache.org/plugins/maven-jar-plugin/) | `3.4.2` | - |
8484
| [maven-resources](https://maven.apache.org/plugins/maven-resources-plugin/) | `3.3.1` | filter resources |
8585
| [maven-surce](https://maven.apache.org/plugins/maven-source-plugin/) | `3.3.1` | add sources to artifacts |
86-
| [maven-surefire](https://maven.apache.org/surefire/maven-surefire-plugin/) | `3.3.1` | testing |
86+
| [maven-surefire](https://maven.apache.org/surefire/maven-surefire-plugin/) | `3.4.0` | testing |
8787
| [build-helper](https://www.mojohaus.org/build-helper-maven-plugin/) | `3.6.0` | define source directories |
8888
| [gitflow-maven](https://aleksandr-m.github.io/gitflow-maven-plugin/) | `1.21.0` | gitflow relase master/develop/release |
8989
| [jacoco-maven](https://www.eclemma.org/jacoco/trunk/doc/maven.html) | `0.8.12` | test reports |
9090
| [jgiven-maven](https://jgiven.org/userguide/#_maven) | `1.3.1` | jgiven test reports |
91-
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.6.0` | openapi/swagger code generation |
91+
| [openapi-generator](https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator-maven-plugin) | `7.8.0` | openapi/swagger code generation |
9292
| [properties-maven](https://www.mojohaus.org/properties-maven-plugin/) | `1.2.1` | generate build properties for project |
9393
| [versions-maven](https://www.mojohaus.org/versions/versions-maven-plugin/index.html) | `2.17.1` | modify versions of project |
9494
| [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: 18 additions & 8 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.8.1</version>
7+
<version>2024.8.2</version>
88

99
<name>Maven Parent - Kotlin Base</name>
1010
<description>Maven parent for a holistic kotlin lib project.</description>
@@ -54,7 +54,7 @@
5454
<jetbrains-annotations.version>24.1.0</jetbrains-annotations.version>
5555

5656
<!-- TEST -->
57-
<junit5.version>5.10.3</junit5.version>
57+
<junit5.version>5.11.0</junit5.version>
5858
</properties>
5959

6060
<dependencyManagement>
@@ -183,6 +183,16 @@
183183
<version>${kotlin.version}</version>
184184
</dependency>
185185
<!-- // KOTLIN (from kotlin-bom) -->
186+
<dependency>
187+
<groupId>org.jetbrains.kotlin</groupId>
188+
<artifactId>kotlin-annotation-processing-embeddable</artifactId>
189+
<version>${kotlin.version}</version>
190+
</dependency>
191+
<dependency>
192+
<groupId>org.jetbrains.kotlin</groupId>
193+
<artifactId>kotlin-annotation-processing-compiler</artifactId>
194+
<version>${kotlin.version}</version>
195+
</dependency>
186196

187197
<!-- KOTLIN SERIALIZATION -->
188198
<dependency>
@@ -576,7 +586,7 @@
576586
<plugin>
577587
<groupId>org.apache.maven.plugins</groupId>
578588
<artifactId>maven-deploy-plugin</artifactId>
579-
<version>3.1.2</version>
589+
<version>3.1.3</version>
580590
<configuration>
581591
<skip>${kp.plugin.skipDeploy}</skip>
582592
</configuration>
@@ -618,7 +628,7 @@
618628
<plugin>
619629
<groupId>org.apache.maven.plugins</groupId>
620630
<artifactId>maven-surefire-plugin</artifactId>
621-
<version>3.3.1</version>
631+
<version>3.4.0</version>
622632
<configuration>
623633
<useSystemClassLoader>false</useSystemClassLoader>
624634
<shutdown>kill</shutdown>
@@ -639,7 +649,7 @@
639649
<plugin>
640650
<groupId>org.apache.maven.plugins</groupId>
641651
<artifactId>maven-failsafe-plugin</artifactId>
642-
<version>3.3.1</version>
652+
<version>3.4.0</version>
643653
<executions>
644654
<execution>
645655
<id>integration-tests</id>
@@ -667,7 +677,7 @@
667677
<plugin>
668678
<groupId>org.apache.maven.plugins</groupId>
669679
<artifactId>maven-gpg-plugin</artifactId>
670-
<version>3.2.4</version>
680+
<version>3.2.5</version>
671681
<configuration>
672682
<!-- pass -Dgpg.keyname=.. and -Dgpg.passphrase=... -->
673683
<gpgArguments>
@@ -692,7 +702,7 @@
692702
<plugin>
693703
<groupId>org.apache.maven.plugins</groupId>
694704
<artifactId>maven-install-plugin</artifactId>
695-
<version>3.1.2</version>
705+
<version>3.1.3</version>
696706
</plugin>
697707

698708
<!-- SOURCE (version) -->
@@ -841,7 +851,7 @@
841851
<plugin>
842852
<groupId>org.openapitools</groupId>
843853
<artifactId>openapi-generator-maven-plugin</artifactId>
844-
<version>7.7.0</version>
854+
<version>7.8.0</version>
845855
</plugin>
846856

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

0 commit comments

Comments
 (0)