Last active
August 29, 2018 20:15
-
-
Save ibakhtin/f2cb234184e3bc64aed81483ac01081d to your computer and use it in GitHub Desktop.
Gradle file for some groovy project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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