forked from jenkinsci/git-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (42 loc) · 1.51 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
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath group: 'org.jenkins-ci.tools', name: 'gradle-jpi-plugin', version: '0.1-SNAPSHOT'
}
}
apply plugin: 'jpi'
jenkinsPlugin {
coreVersion = '1.420'
displayName = 'Git Plugin'
url = 'http://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin'
}
repositories {
maven {
name 'jgit-repository'
url 'http://download.eclipse.org/jgit/maven'
}
}
group = "org.jenkinsci.plugins"
version = "1.1.15-SNAPSHOT"
archivesBaseName = "git"
description = 'Integrates Jenkins with GIT SCM'
dependencies {
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.8.2'
optionalJenkinsPlugins([group: 'org.jenkins-ci.plugins', name: 'token-macro', version: '1.0', ext: 'jar'])
optionalJenkinsPlugins([group: 'org.jvnet.hudson.plugins', name: 'parameterized-trigger', version: '2.4', ext: 'jar']) {
exclude group: 'org.jvnet.hudson.plugins', module: 'subversion'
}
compile(
[group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '0.12.1'],
[group: 'joda-time', name: 'joda-time', version: '1.5.1'],
[group: 'com.infradna.tool', name: 'bridge-method-annotation', version: '1.4'])
testCompile(
[group: 'org.mockito', name: 'mockito-all', version: '1.8.5'],
[group: 'junit', name: 'junit', version: '3.8.1']
)
}
compileJava.targetCompatibility = "1.6"
compileJava.sourceCompatibility = "1.6"