Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Reduce warnings
  • Loading branch information
iamdanfox committed Sep 4, 2019
commit 53ddff16c53223a49bfb614ff9ccb82fb8493f61
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ buildscript {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.netflix.nebula:nebula-publishing-plugin:13.2.0'
classpath 'com.palantir.baseline:gradle-baseline-java:1.17.2'
classpath 'com.palantir.baseline:gradle-baseline-java:2.0.0'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.11.0'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.0.1'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.11.2'
Expand Down
8 changes: 4 additions & 4 deletions tracing-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apply from: "$rootDir/gradle/publish-jar.gradle"

dependencies {
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml"

annotationProcessor "org.immutables:value"
compileOnly "org.immutables:value::annotations"
Expand Down
4 changes: 2 additions & 2 deletions tracing-benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ tasks.jmhCompileGeneratedClasses {
dependencies {
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess'
compileOnly 'org.openjdk.jmh:jmh-generator-annprocess'
compile 'org.immutables:value::annotations'
compile 'org.openjdk.jmh:jmh-core'
implementation 'org.immutables:value::annotations'
implementation 'org.openjdk.jmh:jmh-core'
jmh project(':tracing')
jmh 'com.google.guava:guava'
jmh 'org.apache.logging.log4j:log4j-slf4j-impl'
Expand Down
10 changes: 5 additions & 5 deletions tracing-jaxrs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ dependencies {
compile project(":tracing")
compile "javax.ws.rs:javax.ws.rs-api"

testCompile "ch.qos.logback:logback-classic"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.jmock:jmock"
testCompile "org.mockito:mockito-core"
testImplementation "ch.qos.logback:logback-classic"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.jmock:jmock"
testImplementation "org.mockito:mockito-core"

annotationProcessor "org.immutables:value"
compileOnly "org.immutables:value::annotations"
Expand Down
8 changes: 4 additions & 4 deletions tracing-jersey/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ dependencies {
implementation 'javax.ws.rs:javax.ws.rs-api'
implementation project(':tracing-api')

testCompile "io.dropwizard:dropwizard-testing"
testCompile "junit:junit"
testCompile "org.hamcrest:hamcrest-all"
testCompile "org.mockito:mockito-core"
testImplementation "io.dropwizard:dropwizard-testing"
testImplementation "junit:junit"
testImplementation "org.hamcrest:hamcrest-all"
testImplementation "org.mockito:mockito-core"

compileOnly "org.immutables:value::annotations"
testCompileOnly "org.immutables:value::annotations"
Expand Down
6 changes: 3 additions & 3 deletions tracing-okhttp3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ dependencies {

implementation project(':tracing-api')

testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"

compileOnly "org.immutables:value::annotations"
testCompileOnly "org.immutables:value::annotations"
Expand Down
14 changes: 7 additions & 7 deletions tracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ dependencies {
implementation 'com.google.code.findbugs:jsr305'
implementation 'com.google.errorprone:error_prone_annotations'

testCompile "ch.qos.logback:logback-classic"
testCompile "com.palantir.safe-logging:preconditions-assertj"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.jmock:jmock"
testCompile "org.mockito:mockito-core"
testCompile "io.zipkin.java:zipkin"
testImplementation "ch.qos.logback:logback-classic"
testImplementation "com.palantir.safe-logging:preconditions-assertj"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.jmock:jmock"
testImplementation "org.mockito:mockito-core"
testImplementation "io.zipkin.java:zipkin"

annotationProcessor "org.immutables:value"
compileOnly "org.immutables:value::annotations"
Expand Down