gpt4 book ai didi

gradle - 找不到参数的方法 annotationProcessor()

转载 作者:行者123 更新时间:2023-12-04 13:45:56 28 4
gpt4 key购买 nike

以下是我的 build.gradle 文件。我的项目在本地编译(IntelliJ-IDEA 是我的 IDE),但是当我将它推送到 GitHub 时, travis-ci 构建失败。我的 gradle 版本是 gradle-5.2。

apply plugin: "java"
apply plugin: 'jacoco'

sourceCompatibility = 1.8
version = "1.0"

repositories {
mavenCentral()
}


dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompileOnly 'org.projectlombok:lombok:1.18.2'
}

FAILURE: Build failed with an exception.

  • Where: Build file '/home/travis/build/XXX/PROJECT/build.gradle' line: 33
  • What went wrong: A problem occurred evaluating root project 'PROJECT'.

Could not find method annotationProcessor() for arguments [org.projectlombok:lombok:1.18.2] on object of typeorg.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.


annotationProcessor build.gradle 似乎没有被解析,我不确定潜在的问题是什么。任何帮助,将不胜感激。谢谢。

最佳答案

正如@M.Ricciuti 所说,annotationProcessor可从 gradle 版本获得 4.6 然后。所以我们应该做的只是确认gradle的版本> = 4.6。我们最好使用 Wrapper .谢谢,就是这样。

关于gradle - 找不到参数的方法 annotationProcessor(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54920549/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com