27 lines
830 B
Groovy
27 lines
830 B
Groovy
apply plugin: 'application'
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
apply from: "${rootDir}/gradle/jacoco.gradle"
|
|
|
|
version = 'demo'
|
|
description = 'dropwizard-mongo-client'
|
|
mainClassName = 'com.datadoghq.example.dropwizard.BookApplication'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
dependencies {
|
|
compile project(':dd-trace')
|
|
compile project(':dd-trace-annotations')
|
|
|
|
compile group: 'io.opentracing', name: 'opentracing-api', version: '0.30.0'
|
|
compile group: 'io.opentracing', name: 'opentracing-util', version: '0.30.0'
|
|
|
|
compile group: 'io.dropwizard', name: 'dropwizard-core', version: '0.9.2'
|
|
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.4.2'
|
|
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.7.0'
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '4.0'
|
|
}
|