私はJavaでGradleプラグインを書いています。開発 (特にコード補完) に IDE を使用するには、クラスpom.xml
の依存情報をプロジェクトのファイルに追加する必要があります。org.gradle.api.*
どこで見つけることができますか?
mvnrepository.comを試しましたが、見つかりませんでした。
私はJavaでGradleプラグインを書いています。開発 (特にコード補完) に IDE を使用するには、クラスpom.xml
の依存情報をプロジェクトのファイルに追加する必要があります。org.gradle.api.*
どこで見つけることができますか?
mvnrepository.comを試しましたが、見つかりませんでした。
これを使って:
dependencies {
//we will use the Groovy version that ships with Gradle:
compile localGroovy()
//our plugin requires Gradle API interfaces and classes to compile:
compile gradleApi()
}
2016年にこれを読んでいる人のために(そしておそらくそれ以降)。
アーティファクトはJCenter : org.gradle:gradle-coreで利用できます。「カスタム」を追加する必要はありませんrepositories
。
したがって、必要なことは次のとおりです。
repositories {
jcenter()
}
dependencies {
compile 'org.gradle:gradle-core:2.14.1'
// compile 'org.codehaus.groovy:groovy-all:2.4.4'
}