Skip to content

Commit

Permalink
Merge branch 'release/2025.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jangalinski committed Feb 23, 2025
2 parents 564bca8 + 9e66914 commit 357904c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,20 @@ are included.
| Lib | Version | Info |
|--------|----------|--------------------------------------|
| jetbrains-annotations | `26.0.1` | common annotations |
| junit5 | `5.11.4` | bom dependency, unit testing |
| junit5 | `5.11.0` | bom dependency, unit testing |

## Plugins

see [official plugins](https://maven.apache.org/plugins/index.html)

| Plugin | Version | Info |
|----------------------------------------------------------------------------------------------------------------------------|----------|---------------------------------------------|
| [maven-compiler](https://maven.apache.org/plugins/maven-compiler-plugin/) | `3.13.0` | disabling java compiler for kotlin projects |
| [maven-compiler](https://maven.apache.org/plugins/maven-compiler-plugin/) | `3.14.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.11.2` | include javadoc |
| [dokka](https://kotlinlang.org/docs/dokka-maven.html#apply-dokka) | `2.0.0` | 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-clean](https://maven.apache.org/plugins/maven-clean-plugin/) | `3.4.1` | clean project |
| [maven-dependency](https://maven.apache.org/plugins/maven-dependency-plugin/) | `3.8.1` | 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 |
Expand Down
8 changes: 4 additions & 4 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>2025.2.0</version>
<version>2025.2.1</version>

<name>Maven Parent - Kotlin Base</name>
<description>Maven parent for a holistic kotlin lib project.</description>
Expand Down Expand Up @@ -54,7 +54,7 @@
<jetbrains-annotations.version>26.0.2</jetbrains-annotations.version>

<!-- TEST -->
<junit5.version>5.11.4</junit5.version>
<junit5.version>5.12.0</junit5.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -488,7 +488,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${java.version}</source>
Expand Down Expand Up @@ -577,7 +577,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</plugin>

<!-- DEPENDENCY (version) -->
Expand Down

0 comments on commit 357904c

Please sign in to comment.