-
Notifications
You must be signed in to change notification settings - Fork 92
/
build.gradle
24 lines (21 loc) · 967 Bytes
/
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
plugins {
id "se.bjurr.gradle.conventional-release"
id "se.bjurr.gradle.update-versions"
id "se.bjurr.gradle.java-convention"
}
dependencies {
api 'com.github.jknack:handlebars:4.4.0'
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-gson:2.11.0'
implementation 'com.jayway.jsonpath:json-path:2.9.0'
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.0.0.202409031743-r'
implementation 'org.gitlab:java-gitlab-api:4.1.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
testImplementation 'org.slf4j:slf4j-simple:2.0.13'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.approvaltests:approvaltests:24.5.0'
testImplementation 'org.mockito:mockito-core:5.13.0'
}