Add initial cloud commands + refactors to common
This commit is contained in:
parent
f21306021d
commit
6545d7ffac
89 changed files with 1959 additions and 1893 deletions
|
|
@ -20,10 +20,12 @@ subprojects {
|
|||
mavenCentral()
|
||||
maven { url 'https://jitpack.io' }
|
||||
maven { url 'https://repo.aikar.co/content/groups/aikar/' }
|
||||
maven { url 'https://repo.incendo.org/content/repositories/snapshots' }
|
||||
maven { url 'https://papermc.io/repo/repository/maven-public/' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.FrankHeijden.cloud:cloud-core:fea4605277'
|
||||
implementation 'com.github.FrankHeijden:MinecraftReflection:1.0.0'
|
||||
|
||||
testCompile 'org.assertj:assertj-core:3.18.1'
|
||||
|
|
@ -51,6 +53,13 @@ subprojects {
|
|||
maxWarnings = 0
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
exclude 'com/mojang/**'
|
||||
relocate 'dev.frankheijden.minecraftreflection', dependencyDir + '.minecraftreflection'
|
||||
relocate 'cloud.commandframework', dependencyDir + '.cloud'
|
||||
relocate 'io.leangen.geantyref', dependencyDir + '.typetoken'
|
||||
}
|
||||
|
||||
shadowJar.dependsOn checkstyleMain, checkstyleTest, test
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue