0
我遇到了爲IntelliJ設置Java Gradle Plugin項目的問題。如何在IntelliJ中設置Java Gradle插件項目?
具體來說,我無法讓Java導入所需的gradle庫。
import org.gradle.api.Plugin;
import org.gradle.api.Project;
我遇到了爲IntelliJ設置Java Gradle Plugin項目的問題。如何在IntelliJ中設置Java Gradle插件項目?
具體來說,我無法讓Java導入所需的gradle庫。
import org.gradle.api.Plugin;
import org.gradle.api.Project;
我找到了Groovy的答案,並將它移植到Java上。
確保您已下載gradle,並將gradle bin目錄添加到您的路徑中。
爲您的項目中存在的創建一個新的目錄,打開命令提示符,運行以下命令:
gradle init --type java-library
然後編輯生成的build.gradle文件,並添加依賴以下:
compile gradleApi()
而且和以下內容:
apply plugin: 'idea'
這將導致我n表示看起來像的build.gradle:
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'idea'
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
compile gradleApi()
// The production code uses Guava
compile 'com.google.guava:guava:20.0'
// Use JUnit test framework
testCompile 'junit:junit:4.12'
}
然後回到命令提示符下運行:
gradlew idea
而在的IntelliJ打開生成的項目