Initial commit

This commit is contained in:
2022-10-24 02:43:46 +08:00
commit 0bdc4d0cd8
59 changed files with 3199 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
version = '1.0.0'
setArchivesBaseName("HamsterBall-Common")
dependencies {
// https://mvnrepository.com/artifact/com.google.code.gson/gson
//noinspection GradlePackageUpdate
compileOnly 'com.google.code.gson:gson:2.8.0'
// https://mvnrepository.com/artifact/io.netty/netty-all
compileOnly 'io.netty:netty-all:4.1.84.Final'
compileOnly "cn.hamster3.mc.plugin:hamster-core-common:1.0.0"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
test {
useJUnitPlatform()
}