gpt4 book ai didi

java - Eclipse 无法识别 gradle 依赖项

转载 作者:行者123 更新时间:2023-12-03 03:41:05 27 4
gpt4 key购买 nike

我是 Eclipse 的新手,我是 IntelliJ 的人:)所以为了练习,我在 Eclipse 中创建了一个虚拟的 Gradle 项目,它甚至无法识别自动插入的 JUnit 依赖项。

我使用的堆栈如下:

  • Gradle 6.6.1
  • Java 13
  • Eclipse 2019-09 R (4.13.0) --> 根据以下建议更新至 2020-09 (4.17.0)

我已经做过的事情:

一切来自 herehere ,即:

  1. 根据 this 完成能够使用 Lombok 的先决条件(参见下面的代码)指导。

  2. 正在安装 Buildship Gradle。

  3. 在我的 build.gradle 中插入以下脚本:

    应用插件:“eclipse”

    然后运行

    gradlew cleanEclipse eclipse

  4. 在首选项中设置自动项目同步并使用该选项卡上的其他选项。

  5. 刷新依赖项并单击鼠标右键。... 可能还有其他一些我记不太清的事情。

我的实际代码如下(大部分是自动生成的):

build.gradle:

/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.3/userguide/java_library_plugin.html
*/

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
id "io.freefair.lombok" version "5.2.1"
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}


dependencies {

compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'

// only required if Lombok annotation are present in test code
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'


// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:28.2-jre'

implementation 'com.google.code.gson:gson:2.8.6'


// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}

图书馆:

package gradleproject;

public class Library {
public boolean someLibraryMethod() {
return true;
}
}

库测试:

/*
* This Java source file was generated by the Gradle 'init' task.
*/
package gradleproject;

import static org.junit.Assert.*;

import org.junit.Test;

public class LibraryTest {
@Test
public void testSomeLibraryMethod() {
Library classUnderTest = new Library();
assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod());
}
}

动物:

package gradleproject;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Animal {
private String name;
private int age;
}

JUnit 和 Lombok 依赖项在构建后都无法识别。没有 lombok 依赖项,我的代码实际上可以编译,甚至我的测试运行,但测试类本身(和里面的代码)仍然带有下划线,并表示它无法解析依赖项。

如果我尝试其他一些库,构建会失败。

你有什么建议吗?

提前致谢。

PS:我已经更新到最新版本的 Eclipse 并重新创建了项目。遗憾的是,它并没有解决问题。

最佳答案

首先要注意的是,您使用的是一年前的 Eclipse 版本。 Eclipse 2020-09 刚刚发布。我强烈建议先升级到那个以获得最新的改进。其次,无需安装 Buildship,因为它开箱即用地包含在 Eclipse 中。

在 Gradle 方面,也不需要包括 Eclipse 插件。 Buildship 根本不使用 Eclipse 插件。相反,它使用 Gradle Tooling API。使用 Buildship 导入项目然后运行 ​​gradlew cleanEclipse eclipse 实际上违背了 Buildship 的目的并覆盖了 Buildship 填充的项目设置。

查看提供的build.gradle,我可以看到以下问题:

  1. junit:junit:4.13testCompiletestImplementation 范围内定义。仅使用 testImplementation

  2. Lombok 根本没有配置。在 Eclipse 中安装 Lombok 支持时,您仍然需要在 build.gradle 中定义依赖项:

     compileOnly 'org.projectlombok:lombok:1.18.12'
    annotationProcessor 'org.projectlombok:lombok:1.18.12'

    // only required if Lombok annotation are present in test code
    testCompileOnly 'org.projectlombok:lombok:1.18.12'
    testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'

    记录在此处:Project Lombok

最后一个提示:在 Eclipse 中,打开 Console View 并从 View 菜单中选择 Gradle Operations。这样您就可以看到 Gradle 输出。如果您的构建脚本出现问题,这可能会派上用场。

Gradle Operations Console View

关于java - Eclipse 无法识别 gradle 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64056528/

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