gpt4 book ai didi

java - 为 XNAT 导入 Gradle 项目时出现问题 - Unresolved 类型

转载 作者:行者123 更新时间:2023-12-02 10:02:36 27 4
gpt4 key购买 nike

我第一次尝试使用 Eclipse 2018-12 导入 XNAT 的 Gradle 项目。我创建了该项目,右键单击,选择 Gradle,然后选择现有 Gradle 项目。导入完成后,SimpleUploadPlugin.java 出现错误 - “无法解析类型 org.apache.ecs.ConcreteElement。它是从所需的 .class 文件间接引用的”。我已经检查过,我有 commons-lang3-3.8.1.jar。

请问我需要做什么才能解决这个问题?

我的 build.gradle 依赖项是:

// TODO: This is a pretty minimal set of dependencies, so don't worry if you need to add more.
dependencies {
implementation("org.nrg.xnat:web") {
transitive = false
}
implementation("org.nrg.xnat:xnat-data-models") {
transitive = false
}
implementation("org.nrg.xdat:core") {
transitive = false
}
implementation "org.nrg:prefs"
implementation "org.nrg:framework"

implementation("turbine:turbine") {
transitive = false
}
implementation("org.apache.velocity:velocity") {
transitive = false
}
implementation("stratum:stratum") {
transitive = false
}

implementation "log4j:log4j"
implementation "io.springfox:springfox-swagger2"

compile group: 'ecs', name: 'ecs', version: '1.4.2'
}

最佳答案

另一个选项是将 org.nrg.xnat:web 的依赖配置从 compileimplementation 更改为 compileOnly 。这可以让您为插件声明更少的依赖项,因为您可以允许传递依赖项。 ECS 依赖项来自 XNAT 本身中的类,因此允许传递依赖项意味着您不必声明可能间接引用的所有内容。我刚刚在 XNAT LDAP 身份验证插件中进行了此更改,然后从这里开始:

implementation("org.nrg.xnat:web") {
transitive = false
}
implementation("org.nrg.xnat:xnat-data-models") {
transitive = false
}
implementation("org.nrg.xdat:core") {
transitive = false
}
implementation("org.nrg:prefs") {
transitive = false
}
implementation("org.nrg:framework") {
transitive = false
}

implementation "org.springframework:spring-web"
implementation "org.springframework.security:spring-security-config"
implementation "org.springframework.security:spring-security-ldap"

implementation "org.apache.commons:commons-lang3"
implementation "org.hibernate.javax.persistence:hibernate-jpa-2.1-api"
implementation "com.google.guava:guava"
implementation "org.slf4j:slf4j-api"
implementation "log4j:log4j"

implementation "org.springframework.security:spring-security-web"
implementation "javax.servlet:javax.servlet-api"

compileOnly "com.google.code.findbugs:jsr305"
compileOnly "org.apache.ivy:ivy:2.4.0"
compileOnly("stratum:stratum") {
transitive = false
}

对此:

compileOnly "org.nrg.xnat:web"
compileOnly "org.springframework.security:spring-security-ldap"
compileOnly "org.slf4j:slf4j-nop"

如果你运行这个:

$ ./gradlew dependencies

您将看到 ecs:ecs:1.4.2 通过许多传递依赖项被引入。

关于java - 为 XNAT 导入 Gradle 项目时出现问题 - Unresolved 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55525071/

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