-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (44 loc) · 1.11 KB
/
build.gradle
File metadata and controls
56 lines (44 loc) · 1.11 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
plugins {
id 'java'
id 'maven-publish'
}
group = 'com.sabazed'
version = '1.1.1'
sourceCompatibility = "21"
targetCompatibility = "21"
repositories {
mavenCentral()
}
ext {
lombokVersion = "1.18.36"
jacksonVersion = "2.18.3"
batikVersion = "1.18"
}
dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
implementation "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
implementation "org.apache.xmlgraphics:batik-transcoder:$batikVersion"
implementation "org.apache.xmlgraphics:batik-codec:$batikVersion"
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
wrapper {
gradleVersion = "8.10"
distributionType = Wrapper.DistributionType.ALL
}
test {
useJUnitPlatform()
}