-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
147 lines (121 loc) · 3.96 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.cadixdev.gradle.licenser.LicenseExtension
plugins {
id("java")
id("java-library")
id("maven-publish")
id("signing")
alias(libs.plugins.shadow)
alias(libs.plugins.licenser)
eclipse
idea
}
group = "com.izanagicraft.messages"
version = "1.0-SNAPSHOT"
description = "A Simple Message Translation and Placeholder replacement lib."
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}
tasks.compileJava.configure {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
configurations.all {
attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
}
configure<LicenseExtension> {
header(rootProject.file("HEADER.txt"))
include("**/*.java")
newLine.set(true)
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
withSourcesJar()
withJavadocJar()
}
publishing {
(components["java"] as AdhocComponentWithVariants).withVariantsFromConfiguration(configurations["shadowRuntimeElements"]) {
skip()
}
publications {
create<MavenPublication>(project.name) {
from(components["java"])
pom {
name.set(project.name)
url.set("https://github.com/IzanagiCraft/message-format")
properties.put("inceptionYear", "2023")
licenses {
license {
name.set("General Public License (GPL v3.0)")
url.set("https://www.gnu.org/licenses/gpl-3.0.txt")
distribution.set("repo")
}
}
developers {
developer {
id.set("sanguine6660")
name.set("Sanguine")
email.set("sanguine6660@gmail.com")
url.set("https://github.com/sanguine6660")
}
}
}
}
}
repositories {
mavenLocal()
if (System.getProperty("publishName") != null && System.getProperty("publishPassword") != null) {
maven("https://artifactory.izanagicraft.tech/repository/maven-snapshots/") {
this.name = "artifactory-izanagicraft-snapshots"
credentials {
this.password = System.getProperty("publishPassword")
this.username = System.getProperty("publishName")
}
}
}
}
}
tasks {
withType<ProcessResources> {
filesMatching("*") {
expand(project.properties)
}
}
compileJava {
options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000"))
options.compilerArgs.add("-Xlint:all")
for (disabledLint in arrayOf("processing", "path", "fallthrough", "serial")) options.compilerArgs.add("-Xlint:$disabledLint")
options.isDeprecation = true
options.encoding = Charsets.UTF_8.name()
}
jar {
this.archiveClassifier.set(null as String?)
this.archiveFileName.set("${project.name}-${project.version}-unshaded.${this.archiveExtension.getOrElse("jar")}")
this.destinationDirectory.set(file("$projectDir/out/unshaded"))
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
processTestResources {
exclude("**/lang.properties")
}
named("build") {
dependsOn(named("shadowJar"))
}
}
tasks.named<ShadowJar>("shadowJar") {
this.archiveClassifier.set(null as String?)
this.archiveFileName.set("${project.name}-${project.version}.${this.archiveExtension.getOrElse("jar")}")
this.destinationDirectory.set(file("$projectDir/out"))
// Get rid of all the libs which are 100% unused.
minimize()
mergeServiceFiles()
}