0

我想知道如何将 gaelyk 插件系统用于 quand4j,它是 quandl(开放数据系统)之上的一个库。在多次尝试手动添加build.gradle喜欢下面的摘录但没有任何成功之后,有人可以指出我对 gaelyk 插件(gradle 和 plugins.groovy)的良好参考吗?

apply plugin: 'war'
apply plugin: 'gaelyk'
apply plugin: 'appengine-geb'

def compatibilityVersion = 1.7
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion

repositories {
    mavenCentral()
    jcenter()
    maven {
        url "http://maven.opengamma.com/nexus/content/groups/public/"
    }
}

dependencies {
    def gaeVersion = '1.9.4'
    def groovyVersion = '2.3.0'
    ...
    compile 'com.jimmoores:quandl:0.8.1'   
}
4

0 回答 0