作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个自定义 Gradle 插件。出于某种原因,IntelliJ 无法找到 gradle-api
的来源。 artifact 并且只显示反编译的 .class 文件。我已经在使用 -all
Gradle Wrapper 的分发(其中包括一些来源,但显然不是我在这里需要的那些)。点击 下载... 导致错误:
Sources not found: Sources for 'gradle-api-6.5.1.jar' not found
如何正确附加/选择
gradle-api
的来源在 IntelliJ 中?
plugins {
id 'java-gradle-plugin'
}
repositories {
jcenter()
}
dependencies {
testImplementation 'junit:junit:4.13'
}
gradlePlugin {
// ...
}
最佳答案
根据 this excellent manual你应该添加 gradleApi()
作为 runtimeOnly
依赖:
dependencies {
//...
runtimeOnly(gradleApi())
关于java - 如何在 IntelliJ 中附加 gradle-api 源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63142990/
我是一名优秀的程序员,十分优秀!