Last active
December 19, 2015 06:19
-
-
Save azenla/5910259 to your computer and use it in GitHub Desktop.
Minetweak build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
apply plugin: 'project-report' | |
repositories { | |
mavenCentral() | |
maven { | |
url 'https://repository.apache.org/content/repositories/releases/' | |
} | |
} | |
dependencies { | |
compile 'com.google.guava:guava:14.0.1' | |
compile 'com.google.code.gson:gson:2.2.4' | |
compile 'commons-io:commons-io:2.4' | |
compile 'commons-lang:commons-lang:2.6' | |
compile 'org.bouncycastle:bcprov-jdk15on:1.49' | |
} | |
jar { | |
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
manifest { | |
attributes('Main-class': 'org.minetweak.Minetweak') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment