Skip to content

Commit

Permalink
Apply formatter on gradle files.
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbenson committed Jul 31, 2018
1 parent 9a71b6f commit b5c8a8b
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion dd-java-agent/agent-bootstrap/agent-bootstrap.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

apply from: "${rootDir}/gradle/java.gradle"

excludedClassesConverage += [ 'datadog.trace.bootstrap.*' ]
excludedClassesConverage += ['datadog.trace.bootstrap.*']

dependencies {
compile project(':dd-trace-api')
Expand Down
2 changes: 1 addition & 1 deletion dd-java-agent/agent-tooling/agent-tooling.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply from: "${rootDir}/gradle/java.gradle"

excludedClassesConverage += [ 'datadog.trace.agent.tooling.*' ]
excludedClassesConverage += ['datadog.trace.agent.tooling.*']

configurations {
// classpath used by the instrumentation muzzle plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
compile project(':dd-trace-api')
compile project(':dd-java-agent:benchmark-integration')
compile deps.opentracing

compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.4.1.v20170120'
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version: '9.4.1.v20170120'
}
Expand Down
1 change: 1 addition & 0 deletions dd-java-agent/dd-java-agent.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jacocoTestReport.dependsOn ':dd-java-agent-ittests:test'
* Note jarname must end in .zip, or its classes will be on the classpath of
* the dd-java-agent jar.
*/

def includeShadowJar(subproject, jarname) {
def agent_project = project
subproject.afterEvaluate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ dependencies {
compile deps.opentracing
annotationProcessor deps.autoservice
implementation deps.autoservice

testCompile project(':dd-java-agent:testing')
}
2 changes: 1 addition & 1 deletion dd-java-agent/instrumentation/instrumentation.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ subprojects { subProj ->
}
}

excludedClassesConverage += [ 'datadog.trace.instrumentation.*' ]
excludedClassesConverage += ['datadog.trace.instrumentation.*']

dependencies {
compile(project(':dd-java-agent:agent-tooling')) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply from: "${rootDir}/gradle/java.gradle"
apply plugin: 'scala'

excludedClassesConverage += [ '*' ]
excludedClassesConverage += ['*']

dependencies {
compile project(':dd-trace-api')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ versionScan {
module = "kafka-streams"
versions = "[0.11.0.0,)"
verifyPresent = [
'org.apache.kafka.streams.state.internals.OrderedBytes' : null
'org.apache.kafka.streams.state.internals.OrderedBytes': null
]
}

Expand Down
2 changes: 1 addition & 1 deletion dd-java-agent/instrumentation/lettuce-5/lettuce-5.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
compile deps.opentracing
annotationProcessor deps.autoservice
implementation deps.autoservice

testCompile project(':dd-java-agent:testing')

testCompile group: 'com.github.kstyrc', name: 'embedded-redis', version: '0.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ versionScan {
scanMethods = true
versions = "[3.3,)"
verifyPresent = [
'com.mongodb.async.client.MongoClientSettings$Builder': 'addCommandListener'
'com.mongodb.async.client.MongoClientSettings$Builder': 'addCommandListener'
]
}

Expand Down
2 changes: 1 addition & 1 deletion dd-java-agent/instrumentation/spring-web/spring-web.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {

testCompile group: 'javax.validation', name: 'validation-api', version: '1.1.0.Final'
testCompile group: 'org.hibernate', name: 'hibernate-validator', version: '5.4.2.Final'

testCompile group: 'org.spockframework', name: 'spock-spring', version: '1.1-groovy-2.4'

testCompile group: 'org.springframework', name: 'spring-web', version: '4.3.14.RELEASE'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
testCompile project(':dd-java-agent:testing')

testCompile group: 'net.spy', name: 'spymemcached', version: '2.12.0'
testCompile group: 'org.spockframework', name:'spock-core', version:'1.1-groovy-2.4'
testCompile group: 'org.testcontainers', name:'testcontainers', version:'1.7.3'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4'
testCompile group: 'org.testcontainers', name: 'testcontainers', version: '1.7.3'
}

configurations.latestDepTestCompile {
Expand Down
2 changes: 1 addition & 1 deletion dd-java-agent/testing/testing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {

compile project(':dd-trace-ot')
compile project(':dd-java-agent:agent-tooling')

annotationProcessor deps.autoservice
implementation deps.autoservice

Expand Down
2 changes: 1 addition & 1 deletion dd-trace-ot/dd-trace-ot.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ testSets {
dependencies {
annotationProcessor deps.autoservice
implementation deps.autoservice

compile project(':dd-trace-api')
compile deps.opentracing
compile group: 'io.opentracing.contrib', name: 'opentracing-tracerresolver', version: '0.1.0'
Expand Down
4 changes: 2 additions & 2 deletions gradle/test-with-scala.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
apply plugin: 'scala'

compileTestGroovy {
classpath = classpath.plus(files(compileTestScala.destinationDir))
dependsOn compileTestScala
classpath = classpath.plus(files(compileTestScala.destinationDir))
dependsOn compileTestScala
}

0 comments on commit b5c8a8b

Please sign in to comment.