feat: update

This commit is contained in:
2025-12-09 00:06:27 -08:00
parent 8253a49cd0
commit bcd611a03e
5 changed files with 30 additions and 1 deletions

6
common/.classpath Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>

17
common/build.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
plugins {
`java-library`
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.google.code.gson:gson:2.10.1")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}

View File

@@ -0,0 +1,4 @@
package online.mineroo.common;
public class ProtocolConstants {
}

Binary file not shown.

View File

@@ -10,5 +10,7 @@ plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
rootProject.name = "mineroo-velocity"
rootProject.name = "mineroo-minecraft-libraries"
include("common")
include("velocity")