quandl (オープン データ システム) 上のライブラリである quand4j 用の gaelyk プラグイン システムをどのように使用できるのか疑問に思っていました。以下の抜粋のように手動で何度も追加しようとして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'
}