Skip to content

Commit

Permalink
Merge branch 'release/2024.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jangalinski committed Oct 10, 2024
2 parents db5da69 + 73d6a4a commit b33b248
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ are included.

| Lib | Version | Info |
|--------|----------|--------------------------------------|
| jetbrains-annotations | `24.1.0` | common annotations |
| junit5 | `5.11.0` | bom dependency, unit testing |
| jetbrains-annotations | `25.0.0` | common annotations |
| junit5 | `5.11.1` | bom dependency, unit testing |

## Plugins

Expand All @@ -70,15 +70,15 @@ see [official plugins](https://maven.apache.org/plugins/index.html)
|----------------------------------------------------------------------------------------------------------------------------|----------|---------------------------------------------|
| [maven-compiler](https://maven.apache.org/plugins/maven-compiler-plugin/) | `3.13.0` | disabling java compiler for kotlin projects |
| [kotlin-maven-plugin](https://kotlinlang.org/docs/maven.html) | `2.0.0` | kotlin compiler plugin |
| [maven-javadoc](https://maven.apache.org/plugins/maven-javadoc-plugin/) | `3.10.0` | include javadoc |
| [maven-javadoc](https://maven.apache.org/plugins/maven-javadoc-plugin/) | `3.10.1` | include javadoc |
| [dokka](https://kotlinlang.org/docs/dokka-maven.html#apply-dokka) | `1.9.20` | use dokka for javadoc |
| [avro-maven](https://avro.apache.org/docs/1.11.1/getting-started-java/) | `1.12.0` | avro code generation |
| [maven-clean](https://maven.apache.org/plugins/maven-clean-plugin/) | `3.4.0` | clean project |
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.8.0` | check/update dependency versions |
| [maven-deploy](https://maven.apache.org/plugins/maven-deploy-plugin/) | `3.1.3` | - |
| [maven-enforcer](https://maven.apache.org/enforcer/maven-enforcer-plugin/) | `3.4.1` | enforce project setup |
| [maven-failsafe](https://maven.apache.org/surefire/maven-failsafe-plugin/) | `3.5.0` | testing |
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | `3.2.6` | sign artifacts for release |
| [maven-gpg](https://maven.apache.org/plugins/maven-gpg-plugin/) | `3.2.7` | sign artifacts for release |
| [maven-install](https://maven.apache.org/plugins/maven-install-plugin/) | `3.1.3` | - |
| [maven-jar-plugin](https://maven.apache.org/plugins/maven-jar-plugin/) | `3.4.2` | - |
| [maven-resources](https://maven.apache.org/plugins/maven-resources-plugin/) | `3.3.1` | filter resources |
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.toolisticon.maven.parent</groupId>
<artifactId>maven-parent-kotlin-base</artifactId>
<version>2024.10.0</version>
<version>2024.10.1</version>

<name>Maven Parent - Kotlin Base</name>
<description>Maven parent for a holistic kotlin lib project.</description>
Expand Down Expand Up @@ -39,7 +39,7 @@
<kp.skipITests>false</kp.skipITests>

<!-- LANGUAGE VERSIONS -->
<kotlin.version>2.0.20</kotlin.version>
<kotlin.version>2.0.21</kotlin.version>
<kotlin.compiler.apiVersion>2.0</kotlin.compiler.apiVersion>
<kotlin.compiler.languageVersion>2.0</kotlin.compiler.languageVersion>
<kotlin.compiler.incremental>${kp.compile.useIncrementalKotlinCompiler}</kotlin.compiler.incremental>
Expand All @@ -51,10 +51,10 @@
<kotlinx-coroutines.version>1.9.0</kotlinx-coroutines.version>
<kotlin-logging.version>3.0.5</kotlin-logging.version>

<jetbrains-annotations.version>25.0.0</jetbrains-annotations.version>
<jetbrains-annotations.version>26.0.0</jetbrains-annotations.version>

<!-- TEST -->
<junit5.version>5.11.1</junit5.version>
<junit5.version>5.11.2</junit5.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -628,7 +628,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
<shutdown>kill</shutdown>
Expand All @@ -649,7 +649,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
<executions>
<execution>
<id>integration-tests</id>
Expand Down Expand Up @@ -851,7 +851,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.8.0</version>
<version>7.9.0</version>
</plugin>

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

0 comments on commit b33b248

Please sign in to comment.