Skip to content

Commit 713ab76

Browse files
authored
🔧 chore(build): update version to 2.0.7 and relocate configurate depe… (#364)
2 parents 6ebb1db + d467fc2 commit 713ab76

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

‎surf-api-gradle-plugin/build.gradle.kts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020

2121
group = groupId
2222
version = buildString {
23-
append("2.0.6")
23+
append("2.0.7")
2424
if (snapshot) append("-SNAPSHOT")
2525
}
2626

‎surf-api-gradle-plugin/src/main/kotlin/dev/slne/surf/api/gradle/platform/common/CommonSurfPlugin.kt‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ abstract class CommonSurfPlugin<E : CommonSurfExtension>(
3838
private val relocations = mutableMapOf<String, String>()
3939
private val dependencyDependentRelocations = mutableMapOf<String, MutableMap<String, String>>()
4040

41+
init {
42+
"org.spongepowered.configurate" relocatesTo "configurate"
43+
}
44+
4145
protected abstract val extensionClass: Class<E>
4246

4347
override fun apply(target: Project) = with(target) {

‎surf-api-gradle-plugin/src/main/kotlin/dev/slne/surf/api/gradle/platform/core/CoreSurfPlugin.kt‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ internal abstract class AbstractCoreSurfPlugin<E : CoreSurfExtension>(
1111
"com.mojang.serialization" relocatesTo "mojang.serialization"
1212
"com.mojang.datafixers" relocatesTo "mojang.datafixers"
1313
"net.kyori.adventure.nbt" relocatesTo "kyori.nbt"
14-
"org.spongepowered.configurate" relocatesTo "configurate"
1514
}
1615

1716
final override fun Project.afterEvaluated0(extension: E) {

0 commit comments

Comments
 (0)