-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
48 lines (39 loc) · 1.06 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
plugins {
id "com.github.hierynomus.license" version "0.14.0"
id 'nebula.release' version '6.0.0'
id "com.xebialabs.xl.docker" version "1.1.0"
id "com.github.hierynomus.jython" version "0.8.0"
}
group 'com.xebialabs.xlrelease.plugins'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven'
xlDocker {
compileImage = 'xebialabsunsupported/xlr_dev_compile'
compileVersion = '9.0'
runImage = 'xebialabsunsupported/xlr_dev_run'
runVersion = '9.0'
runPortMapping = '5516:5516'
}
if (!project.hasProperty('release.scope')) {
project.ext['release.scope'] = 'patch'
}
if (!project.hasProperty('release.useLastTag')) {
project.ext['release.useLastTag'] = true
}
dependencies {
jython python(":PyJWT:1.5.3") {
moduleName = "jwt"
}
jython python(":PyGithub:1.35") {
moduleName = "github"
}
}
license {
header rootProject.file('License.md')
strictCheck false
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.name = 'XEBIALABS'
excludes(["**/github/**/*.py", "**/github/**/*.txt", "**/jwt/**/*.py"])
}