Skip to content

Commit

Permalink
upgrade dependencies flagged by dependency-check
Browse files Browse the repository at this point in the history
  • Loading branch information
littleaj committed Aug 2, 2019
1 parent 9b506e5 commit 718c626
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions azure-application-insights-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,22 @@ sourceSets {
}
}

def springBootVersion = '1.5.21.RELEASE'
dependencies {
compile(project(':core'))
compile(project(':web'))
compile(project(':ApplicationInsightsInternalLogger'))
compile ([group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'])
compileOnly('org.springframework.boot:spring-boot:1.5.9.RELEASE')
compileOnly('org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE')
compileOnly('org.springframework.boot:spring-boot-starter-web:1.5.9.RELEASE')
compileOnly('org.springframework.boot:spring-boot-configuration-processor:1.5.9.RELEASE')
compileOnly("org.springframework.boot:spring-boot:$springBootVersion")
compileOnly("org.springframework.boot:spring-boot-autoconfigure:$springBootVersion")
compileOnly("org.springframework.boot:spring-boot-starter-web:$springBootVersion")
compileOnly("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion")
testCompile('junit:junit:4.12')
testCompile('org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE')
testCompile('org.springframework.boot:spring-boot:1.5.9.RELEASE')
testCompile('org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE')
testCompile('org.springframework.boot:spring-boot-starter-web:1.5.9.RELEASE')
testCompile('org.springframework.boot:spring-boot-configuration-processor:1.5.9.RELEASE')
testCompile("org.springframework.boot:spring-boot-starter-test:$springBootVersion")
testCompile("org.springframework.boot:spring-boot:$springBootVersion")
testCompile("org.springframework.boot:spring-boot-autoconfigure:$springBootVersion")
testCompile("org.springframework.boot:spring-boot-starter-web:$springBootVersion")
testCompile("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion")
testCompile('org.assertj:assertj-core:2.6.0')
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/common-java.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tasks.withType(JavaCompile) {
}

checkstyle {
toolVersion = '8.15'
toolVersion = '8.22'
configFile = file("${rootProject.projectDir}/config/checkstyle/checkstyle.xml")
configProperties["rootDir"] = rootProject.projectDir
showViolations = false
Expand Down

0 comments on commit 718c626

Please sign in to comment.