diff options
Diffstat (limited to 'build.gradle')
-rwxr-xr-x | build.gradle | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 84994348..a07e1efb 100755 --- a/build.gradle +++ b/build.gradle @@ -42,12 +42,12 @@ minecraft { dependencies { implementation 'org.jetbrains:annotations-java5:19.0.0' - + compile "org.java-websocket:Java-WebSocket:1.5.1" // you may put jars on which you depend on in ./libs // or you may define them like so.. //compile "some.group:artifact:version:classifier" //compile "some.group:artifact:version" - + // real examples //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env @@ -89,4 +89,19 @@ processResources from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } +} + +shadowJar { + dependencies { + include(dependency('io.vertx:vertx-auth-common:4.0.2')) + include(dependency('io.vertx:vertx-bridge-common:4.0.2')) + include(dependency('io.vertx:vertx-core:4.0.2')) + include(dependency('io.vertx:vertx-stomp:4.0.2')) + } +} + +reobf { + shadowJar { + mappingType = 'SEARGE' + } }
\ No newline at end of file |