Skip to content

Commit ede19c8

Browse files
authored
Update example to Spring Boot 2.3.0 (#2743)
1 parent a2a59bc commit ede19c8

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

examples/spring-boot/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.2.7.RELEASE'
3+
id 'org.springframework.boot' version '2.3.0.RELEASE'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

@@ -9,8 +9,8 @@ repositories {
99
}
1010

1111
dependencies {
12-
compileOnly "org.projectlombok:lombok:1.18.12"
13-
annotationProcessor "org.projectlombok:lombok:1.18.10"
12+
compileOnly "org.projectlombok:lombok"
13+
annotationProcessor "org.projectlombok:lombok"
1414
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
1515
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
1616
implementation 'org.springframework.boot:spring-boot-starter-web'

examples/spring-boot/src/test/java/com/example/AbstractIntegrationTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
@RunWith(SpringJUnit4ClassRunner.class)
1313
@SpringBootTest(classes = DemoApplication.class, webEnvironment = WebEnvironment.RANDOM_PORT, properties = {
1414
"spring.datasource.url=jdbc:tc:postgresql:11-alpine:///databasename",
15-
"spring.datasource.driver-class-name=org.testcontainers.jdbc.ContainerDatabaseDriver"
1615
})
1716
@ActiveProfiles("test")
1817
public abstract class AbstractIntegrationTest {

0 commit comments

Comments
 (0)