We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196fe7f commit a08ca0eCopy full SHA for a08ca0e
1 file changed
build.gradle.kts
@@ -1,5 +1,5 @@
1
plugins {
2
- java
+ `java-library`
3
`maven-publish`
4
}
5
@@ -8,14 +8,14 @@ repositories {
8
9
10
dependencies {
11
- implementation("org.spongepowered:configurate-yaml:4.1.2")
+ api("org.spongepowered:configurate-yaml:4.1.2")
12
compileOnly("org.jetbrains:annotations:24.1.0")
13
testImplementation("org.junit.jupiter:junit-jupiter")
14
testImplementation(platform("org.junit:junit-bom:5.10.2"))
15
16
17
group = "com.archyx"
18
-version = "1.2.0"
+version = "1.2.1"
19
description = "Polyglot"
20
java.sourceCompatibility = JavaVersion.VERSION_17
21
@@ -25,7 +25,7 @@ publishing {
25
26
27
28
-tasks.withType<JavaCompile>() {
+tasks.withType<JavaCompile> {
29
options.encoding = "UTF-8"
30
31
0 commit comments