You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
338 B
Groovy

repositories {
mavenCentral()
}
apply plugin: "java"
dependencies {
compile "com.github.jreddit:jreddit:1.0.3"
}
sourceSets {
main.java.srcDir "src/main"
test.java.srcDir "src/test"
}
jar {
from configurations.compile.collect { zipTree it }
manifest.attributes "Main-Class": "sh.adb.RandomRedditMemesAPI.Main"
}