Skip to content

Commit c39b1dc

Browse files
Bump org.springframework.boot:spring-boot-starter-parent from 3.5.0 to 4.0.0 (#231)
* Bump org.springframework.boot:spring-boot-starter-parent Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.5.0 to 4.0.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v3.5.0...v4.0.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-parent dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Fix things. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Simons <michael@simons.ac>
1 parent 6369dc4 commit c39b1dc

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.0</version>
8+
<version>4.0.0</version>
99
<relativePath></relativePath>
1010
</parent>
1111

@@ -82,6 +82,10 @@
8282
<artifactId>spring-boot-configuration-processor</artifactId>
8383
<optional>true</optional>
8484
</dependency>
85+
<dependency>
86+
<groupId>org.springframework.boot</groupId>
87+
<artifactId>spring-boot-starter-cache</artifactId>
88+
</dependency>
8589
<dependency>
8690
<groupId>org.springframework.boot</groupId>
8791
<artifactId>spring-boot-starter-test</artifactId>

src/main/java/ac/simons/spring/boot/wro4j/Wro4jAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
4545
import org.springframework.boot.autoconfigure.AutoConfiguration;
4646
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
47-
import org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration;
4847
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
4948
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
5049
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
5150
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
51+
import org.springframework.boot.cache.autoconfigure.CacheAutoConfiguration;
5252
import org.springframework.boot.context.properties.EnableConfigurationProperties;
5353
import org.springframework.boot.web.servlet.FilterRegistrationBean;
5454
import org.springframework.cache.CacheManager;

src/test/java/ac/simons/spring/boot/wro4j/Wro4jAutoConfigurationIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import ro.isdc.wro.model.resource.support.naming.DefaultHashEncoderNamingStrategy;
3636

3737
import org.springframework.boot.autoconfigure.AutoConfigurations;
38-
import org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration;
38+
import org.springframework.boot.cache.autoconfigure.CacheAutoConfiguration;
3939
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
4040
import org.springframework.boot.web.servlet.FilterRegistrationBean;
4141
import org.springframework.cache.annotation.EnableCaching;

0 commit comments

Comments
 (0)