-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
45 lines (34 loc) · 1.29 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
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.9.3'
id 'java-library'
id 'groovy'
id 'idea'
}
group 'org.rundeck.cli.demo.ext'
version = scmVersion.version
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
ext.versions=[
toolbelt:'0.2.28',
rd:'1.3.9'
]
dependencies {
compileOnly "org.projectlombok:lombok:1.18.12"
annotationProcessor "org.projectlombok:lombok:1.18.12"
api "org.rundeck.cli:rd-cli-lib:${versions.rd}"
api "org.rundeck.cli-toolbelt:toolbelt-jewelcli:$versions.toolbelt"
implementation "org.rundeck.api:rd-api-client:${versions.rd}"
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
implementation 'com.squareup.retrofit2:converter-jackson:2.7.1'
implementation 'com.squareup.retrofit2:converter-simplexml:2.7.1'
testImplementation "org.rundeck.cli:rd-cli-lib:${versions.rd}"
testImplementation "org.rundeck.api:rd-api-client:${versions.rd}"
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation 'com.squareup.retrofit2:retrofit-mock:2.1.0'
testImplementation 'com.squareup.okhttp3:mockwebserver:3.5.0'
testImplementation "org.codehaus.groovy:groovy-all:2.5.7"
testImplementation "org.spockframework:spock-core:1.3-groovy-2.5"
}