36 lines
937 B
Groovy
36 lines
937 B
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*
|
|
* This generated file contains a 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 https://docs.gradle.org/4.6/userguide/tutorial_java_projects.html
|
|
*/
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
mainClassName = 'App'
|
|
|
|
dependencies {
|
|
compile 'com.google.guava:guava:23.0'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
implementation 'com.espertech:esper:7.1.0'
|
|
implementation 'com.oanda.v20:v20:3.0.21'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.5'
|
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.9.5'
|
|
}
|
|
|
|
repositories {
|
|
// Use jcenter for resolving your dependencies.
|
|
// You can declare any Maven/Ivy/file repository here.
|
|
jcenter()
|
|
}
|
|
|
|
task javadocs(type: Javadoc) {
|
|
source = sourceSets.main.allJava
|
|
}
|