-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
33 lines (28 loc) · 1.05 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
plugins {
id 'application'
id 'org.inferred.processors' version '3.7.0'
id "com.diffplug.spotless" version "7.0.2"
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'com.google.guava', name: 'guava', version: '33.4.0-jre'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
implementation group: 'io.dropwizard', name: 'dropwizard-core', version: '4.0.12'
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '3.0.0'
implementation group: 'net.sourceforge.plantuml', name: 'plantuml', version: '1.2025.0'
implementation group: 'org.inferred', name: 'freebuilder', version: '2.8.0'
implementation group: 'ru.vyarus', name: 'dropwizard-guicey', version: '7.1.4'
processor group: 'org.inferred', name: 'freebuilder', version: '2.8.0'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
spotless {
java {
googleJavaFormat()
}
}
group 'lyang.puml'
application {
mainClass = 'lyang.puml.PumlApplication'
}