我在为IntelliJ设置Java Gradle插件项目时遇到问题。
具体来说,我无法让Java导入所需的gradle库。
import org.gradle.api.Plugin;
import org.gradle.api.Project;
答案 0 :(得分:0)
我找到了Groovy的答案并将其移植到Java上。
确保您已下载gradle,并将gradle bin目录添加到您的路径中。
为项目创建一个新目录。打开命令提示符,然后运行以下命令:
gradle init --type java-library
然后编辑生成的build.gradle文件并添加以下依赖项:
compile gradleApi()
还有以下内容:
apply plugin: 'idea'
这应该会导致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中打开生成的项目