-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (48 loc) · 1.29 KB
/
build.gradle
File metadata and controls
58 lines (48 loc) · 1.29 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
plugins {
id "com.github.hierynomus.license" version "0.16.1"
id "com.xebialabs.xl.docker" version "1.0.0"
}
version = '3.0.0'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.ADOPTIUM
}
}
xlDocker {
compileImage = 'xebialabs/xlr_dev_compile'
compileVersion = 'v6.1.0.1'
runImage = 'xebialabs/xlr_dev_run'
runVersion = 'v6.1.0.1'
runPortMapping = '15516:5516'
}
def apiVersion = '2019.3.13'
dependencies {
implementation "com.xebialabs.deployit:udm-plugin-api:$apiVersion"
implementation "com.xebialabs.overthere:overthere:5.6.16"
implementation "com.xebialabs.xlrelease.plugins:xlr-remotescript-plugin:24.3.7-512.938"
}
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://dist.xebialabs.com/public/maven2'
}
["releases", "public", "thirdparty"].each { r ->
maven {
credentials {
username nexusUserName
password nexusPassword
}
url "${nexusBaseUrl}/repositories/${r}"
}
}
}
license {
header rootProject.file('src/main/license/xebialabs_community.license')
strictCheck false
}