Skip to content

Instantly share code, notes, and snippets.

@mika-f
Last active August 29, 2015 14:20
Show Gist options
  • Save mika-f/012a6aa30d7ce67dca2b to your computer and use it in GitHub Desktop.
Save mika-f/012a6aa30d7ce67dca2b to your computer and use it in GitHub Desktop.
apply plugin: 'java'
sourceCompatibility = 1.8
version = '1.0'
[compileJava, compileTestJava].each { it.options.encoding = 'UTF-8' }
repositories {
mavenCentral()
maven {
name 'Sponge maven repo'
url 'http://repo.spongepowered.org/maven'
}
}
dependencies {
compile "org.spongepowered:spongeapi:2.1-SNAPSHOT"
testCompile "junit:junit:4.+"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment