-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
62 lines (52 loc) · 1.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
id "idea"
id "jacoco"
id 'com.github.kt3k.coveralls' version '2.12.0'
id "java"
id 'maven-publish'
}
group 'systems.crigges'
version '1.9.7'
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
withSourcesJar()
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
jacoco {
toolVersion = "0.8.7"
}
dependencies {
implementation 'com.jcraft:jzlib:1.1.3'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.24.0'
implementation 'com.github.eustas:CafeUndZopfli:5cdf283e67'
implementation group: 'org.tukaani', name: 'xz', version: '1.9'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.31'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.11'
testImplementation 'org.testng:testng:7.8.0'
}
test {
useTestNG()
}
jacocoTestReport {
reports {
xml.required.set(true)
}
}
artifacts {
archives jar
archives sourcesJar
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'inwc3'
artifactId = 'jmpq3'
from components.java
}
}
}