-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
47 lines (35 loc) · 1.11 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
plugins {
id "org.sonarqube" version "2.5"
id "org.jenkins-ci.jpi" version "0.22.0"
}
group 'org.jenkins-ci.plugins'
description = 'This Plugin uploads XUnit results to CodeBeamer'
jenkinsPlugin {
coreVersion = '2.46.3'
displayName = 'CodeBeamer XUnit Uploader'
shortName = 'codebeamer-xunit-uploader'
compatibleSinceVersion = '1.0-SNAPSHOT'
developers {
developer {
id 'mgansler'
name 'Martin Gansler'
}
}
disabledTestInjection = false
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
compileJava {
options.compilerArgs += '-Xlint:unchecked'
options.compilerArgs += '-Xlint:deprecation'
}
dependencies {
jenkinsPlugins(group: 'org.jenkins-ci.plugins', name: 'credentials', version: '2.1.16', ext:'jar')
jenkinsPlugins(group: 'org.jenkins-ci.plugins', name: 'plain-credentials', version: '1.4', ext:'jar')
compile(group: 'log4j', name: 'log4j', version: '1.2.17')
compile files('libs/codebeamer-api-client-1.0.0-all.jar')
jenkinsTest('org.jenkins-ci.main:jenkins-test-harness:2.8@jar')
}