本文介绍了Gradle依赖树,(*)是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想知道(*)在Gradle的依赖树下是什么意思.我一直在网上搜索,找不到任何答案.

+--- org.apache.httpcomponents:httpclient:4.2.6 -> 4.5 (*)

    |    +--- org.apache.jena:apache-jena-libs:2.12.1
    |    |    +--- org.apache.jena:jena-tdb:1.1.1
    |    |    |    +--- org.apache.jena:jena-arq:2.12.1
    |    |    |    |    +--- org.apache.jena:jena-core:2.12.1
    |    |    |    |    |    +--- org.slf4j:slf4j-api:1.7.6 -> 1.7.10
    |    |    |    |    |    +--- org.apache.jena:jena-iri:1.1.1
    |    |    |    |    |    |    +--- org.slf4j:slf4j-api:1.7.6 -> 1.7.10
    |    |    |    |    |    |    \--- log4j:log4j:1.2.17
    |    |    |    |    |    +--- xerces:xercesImpl:2.11.0
    |    |    |    |    |    |    \--- xml-apis:xml-apis:1.4.01
    |    |    |    |    |    \--- log4j:log4j:1.2.17
    |    |    |    |    +--- org.apache.httpcomponents:httpclient:4.2.6 -> 4.5 (*)
    |    |    |    |    +--- com.github.jsonld-java:jsonld-java:0.5.0
    |    |    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.3.3 -> 2.5.1
    |    |    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.3.3 -> 2.5.1 (*)
    |    |    |    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.7 -> 1.7.10 (*)
解决方案

(*) - dependencies omitted (listed previously)

应该显示在依赖关系树下.

标记的依赖项的依赖项出于可读性而被省略,因为它们已在依赖项图输出中的较高位置列出.

(c) - dependency constraint

I am just wondering what does the (*) mean under the dependency tree for Gradle. I have been searching online and could not find any answers.

+--- org.apache.httpcomponents:httpclient:4.2.6 -> 4.5 (*)

    |    +--- org.apache.jena:apache-jena-libs:2.12.1
    |    |    +--- org.apache.jena:jena-tdb:1.1.1
    |    |    |    +--- org.apache.jena:jena-arq:2.12.1
    |    |    |    |    +--- org.apache.jena:jena-core:2.12.1
    |    |    |    |    |    +--- org.slf4j:slf4j-api:1.7.6 -> 1.7.10
    |    |    |    |    |    +--- org.apache.jena:jena-iri:1.1.1
    |    |    |    |    |    |    +--- org.slf4j:slf4j-api:1.7.6 -> 1.7.10
    |    |    |    |    |    |    \--- log4j:log4j:1.2.17
    |    |    |    |    |    +--- xerces:xercesImpl:2.11.0
    |    |    |    |    |    |    \--- xml-apis:xml-apis:1.4.01
    |    |    |    |    |    \--- log4j:log4j:1.2.17
    |    |    |    |    +--- org.apache.httpcomponents:httpclient:4.2.6 -> 4.5 (*)
    |    |    |    |    +--- com.github.jsonld-java:jsonld-java:0.5.0
    |    |    |    |    |    +--- com.fasterxml.jackson.core:jackson-core:2.3.3 -> 2.5.1
    |    |    |    |    |    +--- com.fasterxml.jackson.core:jackson-databind:2.3.3 -> 2.5.1 (*)
    |    |    |    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.7 -> 1.7.10 (*)
解决方案

(*) - dependencies omitted (listed previously)

Should be displayed under your dependency tree.

The dependencies of the marked dependency are omitted for readability because they were already listed higher up in the dependency graph output.

also, (c) - dependency constraint

这篇关于Gradle依赖树,(*)是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 04:52