forked from kaaass/rumbase_java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (40 loc) · 1.07 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
plugins {
id 'java'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
group 'net.kaaass'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// java-binary-block-parser
compile 'com.igormaznitsa:jbbp:2.0.2'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
testCompileOnly 'org.projectlombok:lombok:1.18.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
// Slf4j
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
// JSQLParser
compile 'com.github.jsqlparser:jsqlparser:4.0'
// JUnit
testCompile group: 'junit', name: 'junit', version: '4.12'
}
// Agree --scan ToS
if (hasProperty('buildScan')) {
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
}
test {
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
}
}