Created
August 19, 2016 18:11
-
-
Save mplacona/dcc66f8df0f96a7cab802418a241cf87 to your computer and use it in GitHub Desktop.
build.gradle
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
| group 'uk.co.placona' | |
| version '1.0-SNAPSHOT' | |
| buildscript { | |
| repositories { jcenter() } | |
| dependencies { | |
| classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3' | |
| } | |
| } | |
| apply plugin: 'java' | |
| apply plugin: 'application' | |
| apply plugin: 'com.github.johnrengelman.shadow' | |
| sourceCompatibility = 1.8 | |
| mainClassName = 'SMSBackend' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| testCompile group: 'junit', name: 'junit', version: '4.11' | |
| compile 'com.sparkjava:spark-core:2.5' | |
| compile 'com.twilio.sdk:twilio-java-sdk:5.10.0' | |
| compile 'org.slf4j:slf4j-simple:1.6.1' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment