Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependencies #917

Merged
merged 10 commits into from
Oct 5, 2021
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
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id 'com.github.ben-manes.versions' version '0.39.0'
id 'com.github.spotbugs' version '4.7.3' apply false
id 'com.github.spotbugs' version '4.7.6' apply false
id 'me.champeau.jmh' version '0.6.6'
id 'nebula.dependency-recommender' version '10.0.1'
id 'nebula.netflixoss' version '10.2.1'
id 'nebula.dependency-recommender' version '11.0.0'
id 'nebula.netflixoss' version '10.3.0'
}

// Establish version and status
Expand Down Expand Up @@ -103,7 +103,7 @@ subprojects {
}

spotbugs {
toolVersion = '4.4.0'
toolVersion = '4.4.1'
excludeFilter = rootProject.file('codequality/findbugs-exclude.xml')
ignoreFailures = false
spotbugsMain.enabled = true
Expand Down
18 changes: 9 additions & 9 deletions dependencies.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Auto generated by insight-recommendations build
com.amazonaws:aws-java-sdk-core = 1.12.62
com.amazonaws:aws-java-sdk-cloudwatch = 1.12.62
com.fasterxml.jackson.core:jackson-core = 2.12.5
com.fasterxml.jackson.core:jackson-databind = 2.12.5
com.fasterxml.jackson.dataformat:jackson-dataformat-smile = 2.12.5
com.amazonaws:aws-java-sdk-core = 1.12.78
com.amazonaws:aws-java-sdk-cloudwatch = 1.12.78
com.fasterxml.jackson.core:jackson-core = 2.13.0
com.fasterxml.jackson.core:jackson-databind = 2.13.0
com.fasterxml.jackson.dataformat:jackson-dataformat-smile = 2.13.0
com.google.inject.extensions:guice-servlet = 5.0.1
com.google.inject:guice = 5.0.1
com.netflix.archaius:archaius2-core = 2.3.16
com.netflix.frigga:frigga = 0.25.0
com.netflix.governator:governator = 1.17.12
com.netflix.governator:governator-api = 1.17.12
com.netflix.governator:governator-core = 1.17.12
com.netflix.iep:iep-nflxenv = 3.0.4
com.netflix.iep:iep-nflxenv = 3.0.7
com.netflix.servo:servo-core = 0.13.2
com.typesafe:config = 1.4.1
io.micrometer:micrometer-core = 1.7.3
io.micrometer:micrometer-core = 1.7.4
javax.inject:javax.inject = 1
nl.jqno.equalsverifier:equalsverifier = 3.7.1
org.apache.logging.log4j:log4j-api = 2.14.1
Expand All @@ -27,5 +27,5 @@ org.slf4j:slf4j-api = 1.7.32
org.slf4j:slf4j-log4j12 = 1.7.32
org.slf4j:slf4j-nop = 1.7.32
org.slf4j:slf4j-simple = 1.7.32
software.amazon.awssdk:aws-core = 2.17.34
software.amazon.awssdk:sdk-core = 2.17.34
software.amazon.awssdk:aws-core = 2.17.50
software.amazon.awssdk:sdk-core = 2.17.50
2 changes: 1 addition & 1 deletion spectator-agent/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion spectator-ext-spark/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion spectator-reg-atlas/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.zip.ZipFile

plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}

dependencies {
Expand Down Expand Up @@ -40,6 +40,7 @@ shadowJar {
}
minimize()
exclude('module-info.class')
exclude('META-INF/versions/**')
exclude('META-INF/maven/com.fasterxml.jackson.*/**')
exclude('META-INF/services/com.fasterxml.*')
relocate('com.fasterxml.jackson', 'com.netflix.spectator.atlas.shaded.spectator-atlas.json')
Expand Down
6 changes: 3 additions & 3 deletions spectator-web-spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

dependencies {
api project(':spectator-api')
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.5.4'
implementation 'org.springframework:spring-beans:5.3.9'
implementation 'org.springframework:spring-web:5.3.9'
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.5.5'
implementation 'org.springframework:spring-beans:5.3.10'
implementation 'org.springframework:spring-web:5.3.10'
api 'com.fasterxml.jackson.core:jackson-databind'
}

Expand Down