Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.avides.springboot.springtainer</groupId>
<artifactId>springtainer-common</artifactId>
<version>2.0.0</version>
<version>3.0.0-RC1</version>
</dependency>
```

Expand Down
14 changes: 9 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.avides.springboot.springtainer</groupId>
<artifactId>springtainer-common</artifactId>
<version>2.0.0</version>
<version>3.0.0-RC1</version>

<name>springtainer-common</name>
<description>Common utils for springtainer</description>
Expand Down Expand Up @@ -40,7 +40,7 @@
<!-- Build -->
<maven.build.timestamp.format>dd.MM.yyyy HH:mm</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>21</java.version>
<java.version>25</java.version>
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
<maven-source-plugin.version>3.4.0</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
Expand All @@ -49,12 +49,12 @@
<maven-failsafe-plugin.version>3.5.6</maven-failsafe-plugin.version>
<maven-enforcer-plugin.version>3.6.3</maven-enforcer-plugin.version>
<maven-release-plugin.version>3.3.1</maven-release-plugin.version>
<maven-scm-provider-gitexe.version>1.11.3</maven-scm-provider-gitexe.version>
<maven-scm-provider-gitexe.version>2.2.1</maven-scm-provider-gitexe.version>
<exists-maven-plugin.version>0.15.2</exists-maven-plugin.version>
<central-publishing-maven-plugin.version>0.11.0</central-publishing-maven-plugin.version>
<!-- Common -->
<spring-boot.version>3.5.16</spring-boot.version>
<spring-cloud-starter-bootstrap.version>4.3.3</spring-cloud-starter-bootstrap.version>
<spring-boot.version>4.1.0</spring-boot.version>
<spring-cloud-starter-bootstrap.version>5.0.2</spring-cloud-starter-bootstrap.version>
<!-- lombok must be pinned explicitly for the annotation-processor path; kept in sync with the Spring Boot BOM -->
<lombok.version>1.18.46</lombok.version>
<!-- Other -->
Expand Down Expand Up @@ -243,6 +243,10 @@
<configuration>
<release>${java.version}</release>
<parameters>true</parameters>
<!-- Lombok and spring-boot-configuration-processor are picked up from the classpath, which requires
annotation processing to be enabled explicitly. annotationProcessorPaths is not an option here: it
replaces classpath scanning entirely and would drop the configuration processor. -->
<proc>full</proc>
</configuration>
</plugin>
<plugin>
Expand Down
Loading