Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- group 'org.example'
- version '1.0-SNAPSHOT'
- buildscript {
- repositories {
- gradlePluginPortal()
- }
- dependencies {
- classpath 'gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0'
- }
- }
- apply plugin: 'com.github.johnrengelman.shadow'
- apply plugin: 'java'
- sourceSets.main.java.srcDirs = ["Java"]
- repositories {
- mavenCentral()
- maven{ url 'https://www.jitpack.io' }
- }
- ext{
- mindustryVersion = 'v126.2'
- }
- dependencies {
- implementation "com.github.Anuken.Arc:arc-core:$mindustryVersion"
- implementation "com.github.Anuken.Mindustry:core:$mindustryVersion"
- implementation "com.github.briandilley.jsonrpc4j:jsonrpc4j:1.6"
- implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.9'
- implementation 'org.apache.tomcat:tomcat-servlet-api:9.0.37'
- implementation 'org.slf4j:slf4j-log4j12:1.7.29'
- }
- test {
- useJUnitPlatform()
- }
- shadowJar{
- archiveFileName = "ShadowPlugin.jar"
- from(rootDir){
- include "plugin.json"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment