Skip to content

Commit a08ca0e

Browse files
committed
Make Configurate an api dependency
1 parent 196fe7f commit a08ca0e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
java
2+
`java-library`
33
`maven-publish`
44
}
55

@@ -8,14 +8,14 @@ repositories {
88
}
99

1010
dependencies {
11-
implementation("org.spongepowered:configurate-yaml:4.1.2")
11+
api("org.spongepowered:configurate-yaml:4.1.2")
1212
compileOnly("org.jetbrains:annotations:24.1.0")
1313
testImplementation("org.junit.jupiter:junit-jupiter")
1414
testImplementation(platform("org.junit:junit-bom:5.10.2"))
1515
}
1616

1717
group = "com.archyx"
18-
version = "1.2.0"
18+
version = "1.2.1"
1919
description = "Polyglot"
2020
java.sourceCompatibility = JavaVersion.VERSION_17
2121

@@ -25,7 +25,7 @@ publishing {
2525
}
2626
}
2727

28-
tasks.withType<JavaCompile>() {
28+
tasks.withType<JavaCompile> {
2929
options.encoding = "UTF-8"
3030
}
3131

0 commit comments

Comments
 (0)