Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

feat: allow admin to update any SDB configuration #258

Merged
merged 4 commits into from
Jun 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ buildscript {
springBoot: springBootVersion,
]
}
ext['groovy.version'] = '2.5.12'

repositories {
maven {
Expand All @@ -47,7 +48,7 @@ buildscript {
}

plugins {
id "io.spring.dependency-management" version "1.0.8.RELEASE"
id "io.spring.dependency-management" version "1.0.9.RELEASE"
id "com.github.kt3k.coveralls" version "2.9.0"
}

Expand All @@ -66,7 +67,7 @@ allprojects {
}

spotbugs {
toolVersion = '3.1.12'
toolVersion = '4.0.3'
sourceSets = [ sourceSets.main ]
excludeFilter = file("${rootProject.projectDir}/findbugs-supressions.xml")
}
Expand Down Expand Up @@ -134,7 +135,7 @@ subprojects {
annotationProcessor "org.projectlombok:lombok:${versions.lombok}"

// common test deps
testImplementation 'org.codehaus.groovy:groovy-all:2.5.7'
testImplementation 'org.codehaus.groovy:groovy-all:2.5.12'
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
testImplementation 'junit:junit:4.12'
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
Expand Down Expand Up @@ -195,7 +196,7 @@ configurations {
}

dependencies {
antJUnit 'org.apache.ant:ant-junit:1.9.7'
antJUnit 'org.apache.ant:ant-junit:1.9.15'
}

// Compile all the test results into a single one.
Expand Down
2 changes: 1 addition & 1 deletion cerberus-api-tests/cerberus-api-tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
compile group: 'org.testng', name: 'testng', version: '7.1.0'
compile 'junit:junit:4.12'
compile 'org.slf4j:slf4j-api:1.7.21'
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.5.9'
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.5.12'
compile 'io.rest-assured:rest-assured:4.1.2'
compile group: 'io.rest-assured', name: 'json-schema-validator', version: '4.1.2'
compile group: 'io.rest-assured', name: 'json-path', version: '4.1.2'
Expand Down
Loading