forked from Netflix/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (41 loc) · 1.14 KB
/
build.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
apply plugin: "org.springframework.boot"
//apply plugin: "application"
configurations {
agentBootJar
}
license {
exclude "*.yml"
exclude "*.xml"
exclude "*.txt"
}
dependencies {
/*******************************
* Compile Dependencies
*******************************/
compile project(":genie-agent")
/*******************************
* Provided Dependencies
*******************************/
/*******************************
* Runtime Dependencies
*******************************/
/*******************************
* Test Dependencies
*******************************/
testCompile(project(":genie-test"))
}
springBoot {
mainClassName = "com.netflix.genie.GenieAgentApplication"
}
//mainClassName = "com.netflix.genie.GenieAgentApplication"
//applicationDefaultJvmArgs = ["-noverify", "-XX:TieredStopAtLevel=1"]
def genieVersion = project.version.toString()
jar {
manifest {
attributes("Implementation-Version": genieVersion)
}
}
// Used to provide convenient way to reference the actual executable jar between projects
artifacts {
agentBootJar bootJar
}