-
-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathbuild.gradle
31 lines (26 loc) · 955 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
25
26
27
28
29
30
31
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url "https://repo.eclipse.org/content/groups/releases/"
}
}
dependencies {
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.0.0.202409031743-r'
implementation 'org.eclipse.jgit:org.eclipse.jgit.archive:7.0.0.202409031743-r'
implementation 'org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:7.0.0.202409031743-r'
implementation 'org.eclipse.jgit:org.eclipse.jgit.ssh.apache:7.0.0.202409031743-r'
implementation 'commons-io:commons-io:2.18.0'
implementation 'org.slf4j:slf4j-simple:2.0.16'
// optional dependency of commons-compress which is needed by JGit
implementation 'org.tukaani:xz:1.9'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.4'
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.5'
}