Skip to content

Instantly share code, notes, and snippets.

@azenla
Last active December 19, 2015 06:19
Show Gist options
  • Save azenla/5910259 to your computer and use it in GitHub Desktop.
Save azenla/5910259 to your computer and use it in GitHub Desktop.
Minetweak build.gradle
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