Skip to content

Instantly share code, notes, and snippets.

@Unh0lyTigg
Created February 13, 2016 08:16
Show Gist options
  • Save Unh0lyTigg/e0d1e49a7252d51ea64a to your computer and use it in GitHub Desktop.
Save Unh0lyTigg/e0d1e49a7252d51ea64a to your computer and use it in GitHub Desktop.
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '<ommited>'
group = '<ommited>'
archivesBaseName = '<ommited>'
sourceSets {
main {
java.srcDir 'src/main/java'
resources.srcDir 'src/main/resources'
}
api {
java.srcDir 'src/api/java'
resources.srcDir 'src/api/resources'
}
test {
java.srcDir 'src/test/java'
resources.srcDir 'src/test/resources'
}
}
jar.manifest {
attributes 'Implementation-Version': project.version
attributes 'Implementation-Group': project.group
attributes 'Java-Compilance': project.targetCompatibility
attributes 'Sealed': 'true'
}
repositories {
mavenCentral()
maven {
name 'sonatype'
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compile 'commons-codec:commons-codec:1.10'
compile 'com.google.code.gson:gson:2.6.1'
compile 'com.google.guava:guava:19.0'
compile 'org.apache.commons:commons-compress:1.10'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.lwjgl:lwjgl:3.0.0b'
compile 'org.lwjgl:lwjgl-platform:3.0.0b'
compile 'org.projectlombok:lombok:1.16.6'
compile 'org.ow2.asm:asm-debug-all:5.0.4'
compile 'org.reflections:reflections:0.9.10'
testCompile 'junit:junit:4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment