Skip to content

Commit

Permalink
Boot 3.2.0 as transient dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4mpy committed Nov 25, 2023
1 parent 89a1f12 commit 945259b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 24 deletions.
5 changes: 4 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ These starters are designed to push auto-configuration one step further. In most
I could forget to update README before releasing, so please refer to [maven central](https://repo1.maven.org/maven2/com/c4-soft/springaddons/spring-addons/) to pick latest available release
```xml
<properties>
<springaddons.version>7.1.15</springaddons.version>
<springaddons.version>7.1.16</springaddons.version>
</properties>
<dependencies>

Expand Down Expand Up @@ -460,6 +460,9 @@ I could forget to update README before releasing, so please refer to [maven cent

### 5.1. <a name="release-notes-7"/>`7.x` Branch

#### `7.1.16`
- Spring boot `3.2.0` as transient dependency

#### `7.1.15`
- [gh-155](https://github.com/ch4mpy/spring-addons/issues/155) Configurable HTTP status for responses to authorization_code flow initiation, authorization-code callback and logout. This makes BFF configuration easier for single page and mobile applications. Default OAuth2 response status (`302 Found`) can be overriden with:
```yaml
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
<maven-javadoc-plugin.version>3.6.2</maven-javadoc-plugin.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<maven-shade-plugin.version>3.5.0</maven-shade-plugin.version>
<maven-shade-plugin.version>3.5.1</maven-shade-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>

<sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version>
<sonar-maven-plugin.version>3.10.0.2594</sonar-maven-plugin.version>

<spring-boot.version>3.1.5</spring-boot.version>
<spring-boot.version>3.2.0</spring-boot.version>

<hibernate.version>6.3.1.Final</hibernate.version>
<hibernate-enhance-maven-plugin.version>6.2.7.Final</hibernate-enhance-maven-plugin.version>
<hibernate.version>6.4.0.Final</hibernate.version>
<hibernate-enhance-maven-plugin.version>6.4.0.Final</hibernate-enhance-maven-plugin.version>

<lombok.version>1.18.28</lombok.version>
<lombok.version>1.18.30</lombok.version>
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
<org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
<org.mapstruct.version>1.6.0.Beta1</org.mapstruct.version>

<integration-tests.hostname>${env.HOSTNAME}</integration-tests.hostname>
<integration-tests.scheme>https</integration-tests.scheme>
Expand Down
21 changes: 6 additions & 15 deletions samples/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.c4-soft.springaddons</groupId>
Expand All @@ -16,8 +18,8 @@
<spring-cloud.version>2022.0.4</spring-cloud.version>

<!-- OpenAPI -->
<io.swagger.core.v3.version>2.2.9</io.swagger.core.v3.version>
<springdoc-openapi.version>2.0.4</springdoc-openapi.version>
<io.swagger.core.v3.version>2.2.19</io.swagger.core.v3.version>
<springdoc-openapi.version>2.2.0</springdoc-openapi.version>
<springdoc-openapi-maven-plugin.version>1.4</springdoc-openapi-maven-plugin.version>
<springdoc-openapi.output-dir>${project.basedir}</springdoc-openapi.output-dir>
<integration-tests.scheme>http</integration-tests.scheme>
Expand Down Expand Up @@ -141,10 +143,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<classifier>${repackage.classifier}</classifier>
<keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
<createDependencyReducedPom>true</createDependencyReducedPom>
<image>
<builder>${image.builder}</builder>
<bindings>
Expand All @@ -165,16 +166,6 @@
<executions>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit 945259b

Please sign in to comment.