Skip to content

Instantly share code, notes, and snippets.

@ibakhtin
Last active August 29, 2018 20:15
Show Gist options
  • Save ibakhtin/f2cb234184e3bc64aed81483ac01081d to your computer and use it in GitHub Desktop.
Save ibakhtin/f2cb234184e3bc64aed81483ac01081d to your computer and use it in GitHub Desktop.
Gradle file for some groovy project
plugins {
id 'groovy'
id 'java'
}
group 'eu.bakhtin'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.5.1'
compile 'com.google.guava:guava:26.0-jre'
compile 'commons-codec:commons-codec:1.11'
compile 'org.eclipse.jetty:jetty-server:9.4.0.M1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment