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

Commit

Permalink
feat: allow admin to update any SDB configuration (#258)
Browse files Browse the repository at this point in the history
* feat: allow admin to update any SDB configuration

* chore: address vulnerabilities in dependencies

* chore: update sha1 of spring boot parent pom

* fix: Gradle 6.4.1 seems to have issues with SpotBugs, downgrading to 6.3
  • Loading branch information
mayitbeegh authored Jun 3, 2020
1 parent e996915 commit b7e6383
Show file tree
Hide file tree
Showing 8 changed files with 1,100 additions and 810 deletions.
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

0 comments on commit b7e6383

Please sign in to comment.