Skip to content

Commit

Permalink
Update example to Spring Boot 2.3.0 (#2743)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup authored May 15, 2020
1 parent a2a59bc commit ede19c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/spring-boot/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.2.7.RELEASE'
id 'org.springframework.boot' version '2.3.0.RELEASE'
}
apply plugin: 'io.spring.dependency-management'

Expand All @@ -9,8 +9,8 @@ repositories {
}

dependencies {
compileOnly "org.projectlombok:lombok:1.18.12"
annotationProcessor "org.projectlombok:lombok:1.18.10"
compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-web'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = DemoApplication.class, webEnvironment = WebEnvironment.RANDOM_PORT, properties = {
"spring.datasource.url=jdbc:tc:postgresql:11-alpine:///databasename",
"spring.datasource.driver-class-name=org.testcontainers.jdbc.ContainerDatabaseDriver"
})
@ActiveProfiles("test")
public abstract class AbstractIntegrationTest {
Expand Down

0 comments on commit ede19c8

Please sign in to comment.