-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (33 loc) · 1.33 KB
/
build.gradle
File metadata and controls
39 lines (33 loc) · 1.33 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
plugins {
id "se.bjurr.gradle.bundle-jar"
}
repositories {
mavenCentral()
}
dependencies {
api 'com.github.jknack:handlebars:4.5.0'
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
// okio is transitive from retrofit: https://github.com/square/retrofit/issues/4210
implementation 'com.squareup.retrofit2:converter-gson:3.0.0'
implementation 'com.jayway.jsonpath:json-path:2.9.0'
implementation 'net.minidev:json-smart:2.6.0' // json-path transitive
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.3.0.202506031305-r'
implementation 'org.gitlab:java-gitlab-api:4.1.1'
implementation 'commons-io:commons-io:2.20.0' // java-gitlab-api transitive
implementation 'com.fasterxml.jackson.core:jackson-core:2.20.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.20.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0'
testImplementation 'org.slf4j:slf4j-simple:2.0.17'
testImplementation "org.junit.jupiter:junit-jupiter:6.0.0"
testRuntimeOnly "org.junit.platform:junit-platform-launcher:6.0.0"
testImplementation 'org.assertj:assertj-core:3.27.6'
testImplementation "com.approvaltests:approvaltests:25.5.0"
testImplementation 'org.mockito:mockito-core:5.20.0'
testImplementation 'org.wiremock:wiremock-standalone:3.13.1'
}
test {
useJUnitPlatform()
}
javaExtension {
javaVersion = 17
}