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.1.2")
append("2.1.3")
if (snapshot) append("-SNAPSHOT")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ internal enum class SurfCoreModules(val module: String) {
COMMON("surf-core-api-common"),
PAPER("surf-core-api-paper"),
VELOCITY("surf-core-api-velocity"),
MINESTOM("surf-core-api-minestom"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ open class CoreSurfExtension @Inject constructor(objects: ObjectFactory) :
fun withCoreVelocity() {
coreModule.set(SurfCoreModules.VELOCITY)
}

fun withCoreMinestom() {
coreModule.set(SurfCoreModules.MINESTOM)
}
}