Skip to content

Commit

Permalink
WIP - updating spring boot to 2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Shad Vider committed Feb 12, 2021
1 parent d227d57 commit 7ddfbd6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions backend/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'groovy'
id 'war'
id 'org.springframework.boot' version '2.1.5.RELEASE'
id 'org.springframework.boot' version '2.4.2'
id 'com.gorylenko.gradle-git-properties' version '1.4.21'
id 'io.franzbecker.gradle-lombok' version '1.13'
id 'com.palantir.docker' version '0.20.1'
Expand Down Expand Up @@ -132,7 +132,7 @@ dependencies {
}

// spring boot auto-config starters
['starter-web', 'starter-data-jpa', 'starter-security', 'starter-actuator', 'devtools', 'starter-webflux', 'starter-thymeleaf', 'starter-mail'].each {
['starter-web', 'starter-data-jpa', 'starter-security', 'starter-actuator', 'devtools', 'starter-webflux', 'starter-thymeleaf', 'starter-mail', 'starter-validation'].each {
compile "org.springframework.boot:spring-boot-${it}"
}
// TODO: figure out what this should really be
Expand Down Expand Up @@ -191,8 +191,8 @@ dependencies {
integrationTestCompile 'jp.vmi:selenese-runner-java:3.20.0'
integrationTestCompile "org.springframework.boot:spring-boot-starter-test"
integrationTestCompile "org.springframework.security:spring-security-test"
integrationTestCompile "org.spockframework:spock-core:2.0-groovy-3.0-SNAPSHOT"
integrationTestCompile "org.spockframework:spock-spring:2.0-groovy-3.0-SNAPSHOT"
integrationTestCompile "org.spockframework:spock-core:1.3-groovy-2.5"
integrationTestCompile "org.spockframework:spock-spring:1.3-groovy-2.5"

// CSV file support
compile 'com.opencsv:opencsv:4.4'
Expand Down
12 changes: 6 additions & 6 deletions beacon/core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import org.springframework.boot.gradle.plugin.SpringBootPlugin

plugins {
id 'org.springframework.boot' version '2.0.0.RELEASE' apply false
id 'org.springframework.boot' version '2.4.2' apply false
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

apply plugin: 'groovy'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

repositories {
jcenter()
Expand All @@ -21,13 +21,13 @@ dependencyManagement {

dependencies {
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
testCompile "org.spockframework:spock-spring:1.1-groovy-2.4"
testCompile "org.spockframework:spock-core:1.3-groovy-2.5"
testCompile "org.spockframework:spock-spring:1.3-groovy-2.5"

testCompile 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
}

jar {
archiveName = "beacon-core-${version}.jar"
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version=2.0.0-RC1-SNAPSHOT
shibboleth.version=3.4.4
opensaml.version=3.4.3

spring-boot.version=2.1.5.RELEASE
spring-boot.version=2.4.2

hibernate.version=5.3.14.Final

Expand Down

0 comments on commit 7ddfbd6

Please sign in to comment.