-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (46 loc) · 1.41 KB
/
build.gradle
File metadata and controls
57 lines (46 loc) · 1.41 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
apply plugin: 'java'
apply plugin:'application'
apply plugin:'jacoco'
application {
mainClass = 'org.dstadler.jgitfs.JGitFS'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'commons-cli:commons-cli:1.11.0'
implementation 'org.dstadler:commons-dost:1.4.4'
implementation 'commons-io:commons-io:2.21.0'
implementation 'org.apache.commons:commons-lang3:3.20.0'
implementation 'net.java.dev.jna:jna:3.5.2'
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.4.0.202509020913-r'
implementation 'com.google.guava:guava:33.5.0-jre'
implementation files('lib/fuse-jna-1.0.3.2.jar')
implementation 'jline:jline:2.14.6'
implementation("jakarta.annotation:jakarta.annotation-api:3.0.0")
runtimeOnly 'org.slf4j:slf4j-simple:2.0.17'
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:6.0.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:6.0.1'
testImplementation 'org.dstadler:commons-test:1.0.0.22'
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '8.14.3'
}
tasks.withType(JavaCompile).configureEach {
// avoid: :compileJavawarning: [options] bootstrap class path not set in conjunction with -source 1.7
options.warnings = false
options.compilerArgs = ['-Xlint:deprecation']
options.encoding = 'UTF-8'
}
jacoco {
toolVersion = '0.8.14'
}
jacocoTestReport {
reports {
xml.required = true
}
}