-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
41 lines (36 loc) · 1.37 KB
/
build.gradle.kts
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
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("application")
id("com.github.johnrengelman.shadow").version("8.1.1")
id("refinedarchitect.root")
}
application {
mainClass.set("com.refinedmods.refinedsites.RefinedSites")
}
group = "com.refinedmods"
base {
archivesName.set("refinedsites")
}
dependencies {
compileOnly("org.projectlombok:lombok:1.18.30")
implementation("com.google.code.gson:gson:2.10.1")
annotationProcessor("org.projectlombok:lombok:1.18.30")
implementation("org.thymeleaf:thymeleaf:3.1.2.RELEASE")
implementation("nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0")
implementation("org.asciidoctor:asciidoctorj:2.5.10")
implementation("com.github.slugify:slugify:3.0.6")
implementation("com.vdurmont:semver4j:3.1.0")
implementation("org.slf4j:slf4j-api:2.0.9")
implementation("org.slf4j:slf4j-simple:2.0.9")
implementation("org.kohsuke:github-api:1.318")
implementation("org.eclipse.jgit:org.eclipse.jgit:6.7.0.202309050840-r")
implementation("org.commonmark:commonmark:0.21.0")
implementation("com.github.dfabulich:sitemapgen4j:1.1.2")
implementation("com.rometools:rome:2.1.0")
}
// https://github.com/ultraq/thymeleaf-layout-dialect/issues/220#issuecomment-944874151
tasks {
named<ShadowJar>("shadowJar") {
mergeGroovyExtensionModules()
}
}