Fix subproject version/name

This commit is contained in:
KennyTV 2021-02-24 13:25:09 +01:00
parent 46a01cb0f0
commit 35ac41e1fa
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
2 changed files with 7 additions and 15 deletions

View File

@ -5,9 +5,11 @@ plugins {
`maven-publish`
}
group = "us.myles"
version = "3.3.0-21w07a"
description = "Allow newer clients to join older server versions."
allprojects {
group = "us.myles"
version = "3.3.0-21w07a"
description = "Allow newer clients to join older server versions."
}
subprojects {
apply<JavaLibraryPlugin>()

View File

@ -1,5 +1,5 @@
object Versions {
// common
// Common
const val netty = "4.0.20.Final"
const val guava = "17.0"
const val jUnit = "5.6.3"
@ -11,21 +11,11 @@ object Versions {
const val snakeYaml = "1.18"
const val jetbrainsAnnotations = "19.0.0"
// bukkit
// Platforms
const val spigot = "1.16.5-R0.1-SNAPSHOT"
// bukkit-legacy
const val legacyBukkit = "1.8.8-R0.1-SNAPSHOT"
// bungee
const val bungee = "1.15-SNAPSHOT"
// sponge
const val sponge = "5.0.0-SNAPSHOT"
// sponge-legacy
const val legacySponge = "4.0.0-SNAPSHOT"
// velocity
const val velocityApi = "1.1.0-SNAPSHOT"
}