-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 881 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* This build file was auto generated by running the Gradle 'buildSetup' task
* by 'carl' at '1/18/16 2:06 PM' with Gradle 1.8
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at http://gradle.org/docs/1.8/userguide/tutorial_java_projects.html
*/
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile(
'commons-lang:commons-lang:2.6',
'org.slf4j:slf4j-api:1.7.13',
'org.slf4j:slf4j-simple:1.7.13',
'com.mashape.unirest:unirest-java:1.4.7',
'com.fasterxml.jackson.core:jackson-databind:2.7.0'
)
}
task runSiftTest( type: JavaExec ) {
args( ['client_key', 'secret_key', file('sample.eml').canonicalPath] )
main = 'com.easilydo.sift.api.ApiManager'
classpath sourceSets.main.runtimeClasspath
}