-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·52 lines (42 loc) · 1.15 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
sourceCompatibility = 1.8
version = '0.0.1-SNAPSHOT'
group = 'net.kieker-monitoring'
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
compile 'net.kieker-monitoring:kieker:1.12'
compile 'org.aim:org.aim.mainagent:1.0.4-SNAPSHOT'
compileOnly 'javax.servlet:servlet-api:2.5'
testCompile 'junit:junit:4.12'
}
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn:javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
task wrapper(type: Wrapper) {
gradleVersion = '3.4.1'
}
jar {
manifest {
attributes("Premain-Class": "kieker.monitoring.probe.aim.BciAgent",
"Agent-Class": "kieker.monitoring.probe.aim.BciAgent",
"Can-Redefine-Classes": "true",
"Can-Retransform-Classes": "true",
"Implementation-Title": "Kieker-Aim-Adapter",
"Implementation-Version": "0.1")
}
}