-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpom.groovy
More file actions
57 lines (57 loc) · 1.68 KB
/
pom.groovy
File metadata and controls
57 lines (57 loc) · 1.68 KB
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
project {
modelVersion '4.0.0'
groupId 'org.truegods'
artifactId 'binary'
version '1.0-SNAPSHOT'
name 'Binary Manager'
description 'Binary Manager'
dependencies {
dependency('joda-time:joda-time:1.6.2')
dependency('org.hyperic:sigar:1.6.4.129')
dependency('com.intellij:forms_rt:7.0.3')
dependency('org.hyperic:sigar-dist:1.6.4.129:runtime', type:'zip')
}
build {
plugins {
plugin {
groupId 'org.codehaus.mojo'
artifactId 'ideauidesigner-maven-plugin'
version '1.0-beta-1'
executions {
execution {
goals {
goal 'javac2'
}
}
}
configuration {
debug true
failOnError true
fork true
}
}
plugin {
artifactId 'maven-surefire-plugin'
version '2.8.1'
configuration {
forkMode 'pertest'
argLine '-javaagent:../../agent/target/agent-6.0-SNAPSHOT.jar'
workingDirectory '${basedir}/target'
}
}
plugin {
artifactId 'maven-assembly-plugin'
configuration {
archive {
manifest {
mainClass 'org.truegods.binary.BinaryManager'
}
}
descriptorRefs {
descriptorRef 'jar-with-dependencies'
}
}
}
}
}
}