Skip to content

Commit

Permalink
wip1
Browse files Browse the repository at this point in the history
  • Loading branch information
dima767 committed Feb 4, 2021
1 parent 46205a1 commit 8aec4da
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {
apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

repositories {
jcenter()
Expand Down Expand Up @@ -152,7 +152,7 @@ dependencies {
//For easy data mocking capabilities
compile 'net.andreinc.mockneat:mockneat:0.1.4'

compile 'org.codehaus.groovy:groovy-all:2.4.15'
compile 'org.codehaus.groovy:groovy-all:3.0.7'

//So it works on Java 9 without explicitly requiring to load that module (needed by Hibernate)
runtimeOnly 'javax.xml.bind:jaxb-api:2.3.0'
Expand All @@ -170,8 +170,8 @@ dependencies {

testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "org.springframework.security:spring-security-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:2.0-groovy-3.0-SNAPSHOT"
testCompile "org.spockframework:spock-spring:2.0-groovy-3.0-SNAPSHOT"
testCompile "org.xmlunit:xmlunit-core:2.5.1"
testRuntime 'cglib:cglib-nodep:3.2.5'

Expand All @@ -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:1.1-groovy-2.4"
integrationTestCompile "org.spockframework:spock-spring:1.1-groovy-2.4"
integrationTestCompile "org.spockframework:spock-core:2.0-groovy-3.0-SNAPSHOT"
integrationTestCompile "org.spockframework:spock-spring:2.0-groovy-3.0-SNAPSHOT"

// CSV file support
compile 'com.opencsv:opencsv:4.4'
Expand Down
2 changes: 1 addition & 1 deletion beacon/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
allprojects {
group = 'edu.internet2.tap.beacon'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'
}
4 changes: 2 additions & 2 deletions beacon/spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {
}

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

repositories {
jcenter()
Expand Down
8 changes: 4 additions & 4 deletions pac4j-module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

repositories {
jcenter()
Expand Down Expand Up @@ -34,8 +34,8 @@ dependencies {

testCompile project(':backend')
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:2.0-groovy-3.0-SNAPSHOT"
testCompile "org.spockframework:spock-spring:2.0-groovy-3.0-SNAPSHOT"

annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}

0 comments on commit 8aec4da

Please sign in to comment.