forked from DataDog/dd-trace-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdd-trace-java.gradle
63 lines (49 loc) · 1.59 KB
/
dd-trace-java.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
plugins {
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'com.jfrog.artifactory' version '4.8.1'
id 'com.jfrog.bintray' version '1.8.4'
id 'org.unbroken-dome.test-sets' version '1.5.2'
id 'com.gradle.build-scan' version '1.16' // 2.0+ requires gradle 5
// Not applying google java format by default because it gets confused by stray java build
// files in 'workspace' build directory in CI
id 'com.github.sherter.google-java-format' version '0.7.1' apply false
id 'com.dorongold.task-tree' version '1.3.1'
}
def isCI = System.getenv("CI") != null
allprojects {
group = 'com.datadoghq'
version = '0.23.0-SNAPSHOT'
if (isCI) {
buildDir = "${rootDir}/workspace/${projectDir.path.replace(rootDir.path, '')}/build/"
}
apply from: "${rootDir}/gradle/dependencies.gradle"
apply from: "${rootDir}/gradle/util.gradle"
}
repositories {
jcenter()
mavenCentral()
}
description = 'dd-trace-java'
task traceAgentTest {}
task latestDepTest {}
// Applied here to allow publishing of artifactory build info
apply from: "${rootDir}/gradle/publish.gradle"
def skipBuildscan = Boolean.valueOf(System.getenv("SKIP_BUILDSCAN"))
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
if (isCI && !skipBuildscan) {
publishAlways()
tag 'CI'
}
}
ext.gradleWrapperVersion = '4.10.2'
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
allprojects {
tasks.withType(JavaForkOptions) {
maxHeapSize = System.properties["datadog.forkedMaxHeapSize"]
minHeapSize = System.properties["datadog.forkedMinHeapSize"]
}
}