首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >Graddle缺少传递依赖

Graddle缺少传递依赖
EN

Stack Overflow用户
提问于 2020-11-10 13:35:39
回答 1查看 167关注 0票数 0

我在我的项目中导入了一个依赖项,这个依赖项本身需要另一个依赖项(com.discord4j)。Gradle似乎意识到了这种传递依赖关系,如下面的gradle dependencies命令的输出所示(在编译和运行时,discord4j按照com.bancarelvalentin.genericbot的要求显示)。但是我不能导入它,因为它的名称无法解析。

当涉及到gradle时,我不是专家,所以我肯定遗漏了一些明显的东西。谁能帮我找到什么?

编辑:毕竟,传递依赖似乎并没有添加到compileClasspath中。为什么?

编辑2:我修复了根库POM文件;它是可用的here,但上面的屏幕截图仍然是我在compileClasspath中得到的;我已经清除了所有缓存(InteliJ et Gradle),但male gradle不会将该库放在类路径中

代码语言:javascript
运行
AI代码解释
复制
14:34:16: Executing task 'dependencies'...


> Task :dependencies

------------------------------------------------------------
Root project
------------------------------------------------------------

-api (n)
No dependencies

-runtime (n)
No dependencies

annotationProcessor - Annotation processors and their dependencies for source set 'main'.
No dependencies

api - API dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

apiDependenciesMetadata
No dependencies

apiElements - API elements for main. (n)
No dependencies

archives - Configuration for archive artifacts. (n)
No dependencies

compileClasspath - Compile classpath for compilation 'main' (target  (jvm)).
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4

compileOnly - Compile only dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

compileOnlyDependenciesMetadata
No dependencies

default - Configuration for default artifacts. (n)
No dependencies

implementation - Implementation only dependencies for compilation 'main' (target  (jvm)). (n)
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (n)
\--- com.bancarelvalentin:genericbot:0.0.4 (n)

implementationDependenciesMetadata
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4

kotlinCompilerClasspath
\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
     |    \--- org.jetbrains:annotations:13.0
     +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
     +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
     |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
     +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
     \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinCompilerPluginClasspath
\--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.4.10
     +--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.4.10
     |    +--- org.jetbrains.kotlin:kotlin-scripting-common:1.4.10
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
     |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
     |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7
     |    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
     |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.71 -> 1.4.10
     |    +--- org.jetbrains.kotlin:kotlin-scripting-jvm:1.4.10
     |    |    +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-scripting-common:1.4.10 (*)
     |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
     |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 (*)
     \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)

kotlinKlibCommonizerClasspath
\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:1.4.10
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
     |    \--- org.jetbrains:annotations:13.0
     \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
          +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
          +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
          +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
          |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
          +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
          \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211

kotlinNativeCompilerPluginClasspath
No dependencies

kotlinScriptDef - Script filename extensions discovery classpath configuration
No dependencies

kotlinScriptDefExtensions
No dependencies

runtimeClasspath - Runtime classpath of compilation 'main' (target  (jvm)).
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
     +--- com.discord4j:discord4j-core:3.1.0
     |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10
     |    |    +--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE (c)
     |    |    +--- io.projectreactor.netty:reactor-netty:0.9.10.RELEASE (c)
     |    |    +--- io.projectreactor:reactor-core:3.3.8.RELEASE (c)
     |    |    \--- org.reactivestreams:reactive-streams:1.0.3 (c)
     |    +--- com.discord4j:discord-json:1.5.3
     |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1
     |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.1
     |    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1
     |    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.11.1
     |    |    |         \--- com.fasterxml.jackson.core:jackson-core:2.11.1
     |    |    +--- com.discord4j:discord-json-api:1.5.3
     |    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1 (*)
     |    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    +--- com.discord4j:discord4j-rest:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    \--- com.discord4j:discord4j-common:3.1.0
     |    |         +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |         +--- com.discord4j:discord-json:1.5.3 (*)
     |    |         +--- io.projectreactor.netty:reactor-netty:0.9.10.RELEASE
     |    |         |    +--- io.netty:netty-codec-http:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final
     |    |         |    |    |    \--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-resolver:4.1.51.Final
     |    |         |    |    |         \--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-handler:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-resolver:4.1.51.Final (*)
     |    |         |    |         +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |         +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |         \--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-codec-http2:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-handler:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-codec-http:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-handler:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-handler-proxy:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec-socks:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-codec-http:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-transport-native-epoll:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-transport-native-unix-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |         \--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    \--- io.projectreactor:reactor-core:3.3.8.RELEASE
     |    |         |         \--- org.reactivestreams:reactive-streams:1.0.3
     |    |         +--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE
     |    |         |    \--- io.projectreactor:reactor-core:3.3.4.RELEASE -> 3.3.8.RELEASE (*)
     |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    |         \--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1 (*)
     |    +--- com.discord4j:discord4j-gateway:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    +--- com.discord4j:discord4j-common:3.1.0 (*)
     |    |    \--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE (*)
     |    +--- com.discord4j:discord4j-voice:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    +--- com.discord4j:discord4j-common:3.1.0 (*)
     |    |    \--- com.discord4j:simple-fsm:1.0.1
     |    \--- com.discord4j:stores-jdk:3.1.3
     |         +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |         \--- com.discord4j:stores-api:3.1.3
     |              +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |              +--- io.projectreactor:reactor-core:3.3.8.RELEASE (*)
     |              +--- com.austinv11.servicer:Servicer:1.0.3
     |              \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     +--- com.google.code.gson:gson:2.3.1
     +--- ch.qos.logback:logback-classic:1.2.3
     |    +--- ch.qos.logback:logback-core:1.2.3
     |    \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
     \--- org.slf4j:slf4j-api:1.7.30

runtimeElements - Elements of runtime for main. (n)
No dependencies

runtimeOnly - Runtime only dependencies for compilation 'main' (target  (jvm)). (n)
No dependencies

runtimeOnlyDependenciesMetadata
No dependencies

sourceArtifacts (n)
No dependencies

testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'.
No dependencies

testApi - API dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testApiDependenciesMetadata
No dependencies

testCompileClasspath - Compile classpath for compilation 'test' (target  (jvm)).
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4

testCompileOnly - Compile only dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testCompileOnlyDependenciesMetadata
No dependencies

testImplementation - Implementation only dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testImplementationDependenciesMetadata
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4

testKotlinScriptDef - Script filename extensions discovery classpath configuration
No dependencies

testKotlinScriptDefExtensions
No dependencies

testRuntimeClasspath - Runtime classpath of compilation 'test' (target  (jvm)).
+--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
|    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
|    \--- org.jetbrains:annotations:13.0
\--- com.bancarelvalentin:genericbot:0.0.4
     +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
     +--- com.discord4j:discord4j-core:3.1.0
     |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10
     |    |    +--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE (c)
     |    |    +--- io.projectreactor.netty:reactor-netty:0.9.10.RELEASE (c)
     |    |    +--- io.projectreactor:reactor-core:3.3.8.RELEASE (c)
     |    |    \--- org.reactivestreams:reactive-streams:1.0.3 (c)
     |    +--- com.discord4j:discord-json:1.5.3
     |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1
     |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.11.1
     |    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1
     |    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.11.1
     |    |    |         \--- com.fasterxml.jackson.core:jackson-core:2.11.1
     |    |    +--- com.discord4j:discord-json-api:1.5.3
     |    |    |    +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1 (*)
     |    |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    |    \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    +--- com.discord4j:discord4j-rest:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    \--- com.discord4j:discord4j-common:3.1.0
     |    |         +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |         +--- com.discord4j:discord-json:1.5.3 (*)
     |    |         +--- io.projectreactor.netty:reactor-netty:0.9.10.RELEASE
     |    |         |    +--- io.netty:netty-codec-http:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final
     |    |         |    |    |    \--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-resolver:4.1.51.Final
     |    |         |    |    |         \--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-handler:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-resolver:4.1.51.Final (*)
     |    |         |    |         +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |         +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |         \--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-codec-http2:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-handler:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-codec-http:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-handler:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-handler-proxy:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-codec-socks:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    |    \--- io.netty:netty-codec:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-codec-http:4.1.51.Final (*)
     |    |         |    +--- io.netty:netty-transport-native-epoll:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |    +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |    +--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    |    \--- io.netty:netty-transport-native-unix-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-common:4.1.51.Final
     |    |         |    |         +--- io.netty:netty-buffer:4.1.51.Final (*)
     |    |         |    |         \--- io.netty:netty-transport:4.1.51.Final (*)
     |    |         |    \--- io.projectreactor:reactor-core:3.3.8.RELEASE
     |    |         |         \--- org.reactivestreams:reactive-streams:1.0.3
     |    |         +--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE
     |    |         |    \--- io.projectreactor:reactor-core:3.3.4.RELEASE -> 3.3.8.RELEASE (*)
     |    |         +--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     |    |         \--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.1 (*)
     |    +--- com.discord4j:discord4j-gateway:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    +--- com.discord4j:discord4j-common:3.1.0 (*)
     |    |    \--- io.projectreactor.addons:reactor-extra:3.3.3.RELEASE (*)
     |    +--- com.discord4j:discord4j-voice:3.1.0
     |    |    +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |    |    +--- com.discord4j:discord-json:1.5.3 (*)
     |    |    +--- com.discord4j:discord4j-common:3.1.0 (*)
     |    |    \--- com.discord4j:simple-fsm:1.0.1
     |    \--- com.discord4j:stores-jdk:3.1.3
     |         +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |         \--- com.discord4j:stores-api:3.1.3
     |              +--- io.projectreactor:reactor-bom:Dysprosium-SR10 (*)
     |              +--- io.projectreactor:reactor-core:3.3.8.RELEASE (*)
     |              +--- com.austinv11.servicer:Servicer:1.0.3
     |              \--- com.fasterxml.jackson.core:jackson-databind:2.11.1 (*)
     +--- com.google.code.gson:gson:2.3.1
     +--- ch.qos.logback:logback-classic:1.2.3
     |    +--- ch.qos.logback:logback-core:1.2.3
     |    \--- org.slf4j:slf4j-api:1.7.25 -> 1.7.30
     \--- org.slf4j:slf4j-api:1.7.30

testRuntimeOnly - Runtime only dependencies for compilation 'test' (target  (jvm)). (n)
No dependencies

testRuntimeOnlyDependenciesMetadata
No dependencies

(c) - dependency constraint
(*) - dependencies omitted (listed previously)

(n) - Not resolved (configuration is not meant to be resolved)

A web-based, searchable dependency report is available by adding the --scan option.

BUILD SUCCESSFUL in 116ms
1 actionable task: 1 executed
14:34:16: Task execution finished 'dependencies'.
EN

回答 1

Stack Overflow用户

发布于 2020-11-10 17:24:46

com.bancarelvalentin:genericbot发布的pom是什么?

如果genericbot模块只有runtime依赖项,那么在编译类路径中看不到它们,因此集成开发环境不会检测到它们。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/64769967

复制
相关文章
使用openssl创建https证书
从今天开始笔者打算和大家聊一聊http2这个协议,想要说清楚http2协议就必须亲手搭建一个http2的服务,并且对比http2和http1.1的特点,从而了解http2的一些新特性。
挥刀北上
2019/12/04
31.7K0
使用openssl创建https证书
使用OpenSSL创建CA和申请证书
OpenSSL是一种加密工具套件,可实现安全套接字层(SSL v2 / v3)和传输层安全性(TLS v1)网络协议以及它们所需的相关加密标准。
星哥玩云
2022/07/31
2.7K0
使用OpenSSL创建CA和申请证书
EJBCA使用之注册用户及创建证书
研究ejbca源码快一个月了,从openipmp中的老版ejbca到最新的4.0.15,感觉看别人代码实在太痛苦了,而且之前自己对ejb并不是很熟悉,还必须自己重新学了一点基本的ejb知识。 我最开始是研究openipmp的,里面自带就有ejbca的jar包,所以一开始我看openipmp怎么调用ejbca就行,但是由于openipmp实在太老了,它使用的ejbca是遵守ejb2.1标准的,调用起来实在太复杂太麻烦了,所以经过一周后我彻底放弃它,重新看最新版的ejbca。 最新版的ejbca可以从官网下,官
forrestlin
2018/05/23
1.6K0
openssl 创建 pfx 证书
生成证书请求文件,需要填写信息,例如:cn/gd/zh/sourcecode/bdc/www.a.com
全栈程序员站长
2022/08/15
8830
C#创建https请求并使用pfx证书
WebRequest req = WebRequest.Create(url);
拓荒者IT
2019/09/26
1.5K0
26 Dec 2021 使用cfssl创建自签名证书
可以通过执行cfssl print-defaults config创建默认的配置文件,然后再修改。
俊采
2023/10/17
2590
创建动态库时,建议使用的链接选项Bsymbolic
回归正题,前段时间项目开发中,实现了一个动态库,封装了一些方法。然后基于这个动态库,实现了一个应用程序。应用程序中含有全局变量A,动态库中也含有全局变量A,当我调用动态库中函数后,发现应用程序的A发生了变化!!!O,My God!对于我这种还没在Linux下做过开发的人来说,一头雾水。。。。。。 于是我尝试着,将A中的变量名称改为B,这样问题也就没有了~~~
河边一枝柳
2021/08/06
1.7K0
内网创建私有CA证书
关建立私有CA证书 OpenSSL: 三个组件: openssl: 多用途的命令行工具; libcrypto: 加密解密库; libssl:ssl协议的实现; # PKI:Public Key Infrastructure # CA # RA # CRL # 证书存取库 # 建立私有CA: # OpenCA # openssl # 证书申请及签署步骤: # 1、生成申请请求; # 2、RA核验; # 3、CA签署; # 4、
小柒吃地瓜
2020/04/23
2.7K0
SSL证书创建与部署
SSL证书简介 SSL证书创建 SSL证书部署-Nginx SSL证书部署-Apache SSL证书部署-Tomcat
达达前端
2019/10/28
1.6K0
SSL证书创建与部署
创建本地 LocalHost SSL 证书
程序开发时,避免不了使用https加密通信,可以通过 openssl 工具来生成 ssl 证书,对于不懂的开发来说,openssl 工具是太难使用。有没有一个好用又简单的工具,可以试一试这个用Go语言写的命令行工具:mkcert,非常简单易用。
YP小站
2020/06/04
3.6K0
创建本地 LocalHost SSL 证书
如何创建自签名证书
TLS/SSL是用于将正常流量包装在受保护的加密包装中的Web协议。得益于此技术,服务器可以在服务器和客户端之间安全地发送流量,而不会被外部各方拦截。证书系统还可以帮助用户验证他们正在连接的站点的身份。在本教程中,我们将向您展示如何在Ubuntu 18.04上设置用于Apache Web服务器的自签名SSL证书。
小铁匠米兰的v
2018/08/17
2.1K0
安卓证书在线生成,创建安卓证书
打包安卓应用时,需要对应的证书文件,目前很多前端使用混合开发平台,制作证书需要java的jdk环境,jdk就是几百兆,下载完了还要配置环境变量,大大浪费了我们的开发时间,使用工具在线帮你制作,全程网页操作,填个别名和密码就可以立即帮你生成证书。
英曼畅学
2023/04/23
2.1K0
HTTP转HTTPS—使用OpenSSL创建自签名SSL证书以及Tomcat配置SSL证书实战
对于api服务器,我们不能让访问者先登录再进行访问这样不安全,也不友好。 http协议没有任何的加密以及身份验证的机制,即时是token认证,也非常容易遭遇窃听、劫持、篡改,因此会造成个人隐私泄露,恶意的流量劫持等严重的安全问题。
麦克劳林
2019/12/23
26.9K0
iOS创建苹果证书、制作p12证书流程
1、在苹果开发者后台点击右上角【Account】进入以下界面,然后点击【Certificates, Identifiers & Profiles】
爱学iOS的小麦子
2022/10/18
1.9K0
iOS创建苹果证书、制作p12证书流程
iOS创建苹果证书、制作p12证书流程
1、在苹果开发者后台点击右上角【Account】进入以下界面,然后点击【Certificates, Identifiers & Profiles】
iOS程序应用
2022/12/01
1.1K0
代码签名证书时出错30005怎么办 代码签名证书的作用
代码签名证书在购买的时候一定要通过正规的渠道进行购买,如果是从一些不法平台购买得来的,很有可能会出现代码签名证书时出错30005的状态。出现这样的情况的话,大家首先要做的是先去找购买的平台进行询问,或者是自己找解决办法。
用户8715145
2021/11/26
1K0
iOS创建苹果证书、制作p12证书流程
1、在苹果开发者后台点击右上角【Account】进入以下界面,然后点击【Certificates, Identifiers & Profiles】
iOS Magician
2023/03/21
1.9K0
iOS创建苹果证书、制作p12证书流程
使用vue ui时在其他盘创建项目
使用vue ui在其他盘创建项目 1. cd 切换到其他盘 2. 输入vue ui 就这样可以了你现在的目录上可以创建项目 3. 进入ui界面创建项目
秋名山码神
2022/12/14
8430
使用vue ui时在其他盘创建项目
点击加载更多

相似问题

使用CertEnroll远程更新证书

11

如何使用CertEnroll生成扩展验证自签名证书?

15

C#使用CertEnroll从根证书生成客户端证书

164

无法使用CertEnroll在Windows 7上安装证书

214

基于Azure生成的自签名证书的Certenroll

15
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文