Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion surf-api-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {

group = groupId
version = buildString {
append("2.0.6")
append("2.0.7")
if (snapshot) append("-SNAPSHOT")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ abstract class CommonSurfPlugin<E : CommonSurfExtension>(
private val relocations = mutableMapOf<String, String>()
private val dependencyDependentRelocations = mutableMapOf<String, MutableMap<String, String>>()

init {
"org.spongepowered.configurate" relocatesTo "configurate"
}

protected abstract val extensionClass: Class<E>

override fun apply(target: Project) = with(target) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ internal abstract class AbstractCoreSurfPlugin<E : CoreSurfExtension>(
"com.mojang.serialization" relocatesTo "mojang.serialization"
"com.mojang.datafixers" relocatesTo "mojang.datafixers"
"net.kyori.adventure.nbt" relocatesTo "kyori.nbt"
"org.spongepowered.configurate" relocatesTo "configurate"
}

final override fun Project.afterEvaluated0(extension: E) {
Expand Down
Loading