-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (39 loc) · 1.15 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
plugins {
id 'maven-publish'
id "com.palantir.git-version" version "0.12.3"
}
subprojects {
version = gitVersion()
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
repositories {
mavenCentral()
}
java {
withJavadocJar()
withSourcesJar()
}
dependencies {
implementation 'ch.qos.logback:logback-classic:1.2.7'
implementation 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'org.mockito:mockito-all:1.10.8'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
testImplementation 'commons-io:commons-io:2.11.0'
}
tasks.named('test') {
useJUnitPlatform()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
}