Gradle项目包依赖情况

Gradle项目包依赖情况

方法1

gradlew 模块名:dependencies
+--- org.springframework.boot:spring-boot-starter-data-jpa -> 1.4.1.RELEASE
|    +--- org.springframework.boot:spring-boot-starter:1.4.1.RELEASE (*)
|    +--- org.springframework.boot:spring-boot-starter-aop:1.4.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-starter:1.4.1.RELEASE (*)
|    |    +--- org.springframework:spring-aop:4.3.3.RELEASE (*)
|    |    \--- org.aspectj:aspectjweaver:1.8.9
|    +--- org.springframework.boot:spring-boot-starter-jdbc:1.4.1.RELEASE
|    |    +--- org.springframework.boot:spring-boot-starter:1.4.1.RELEASE (*)
|    |    +--- org.apache.tomcat:tomcat-jdbc:8.5.5
|    |    |    \--- org.apache.tomcat:tomcat-juli:8.5.5
|    |    \--- org.springframework:spring-jdbc:4.3.3.RELEASE
|    |         +--- org.springframework:spring-beans:4.3.3.RELEASE (*)
|    |         +--- org.springframework:spring-core:4.3.3.RELEASE (*)
|    |         \--- org.springframework:spring-tx:4.3.3.RELEASE
|    |              +--- org.springframework:spring-beans:4.3.3.RELEASE (*)
|    |              \--- org.springframework:spring-core:4.3.3.RELEASE (*)
|    +--- org.hibernate:hibernate-core:5.0.11.Final
|    |    +--- org.jboss.logging:jboss-logging:3.3.0.Final
|    |    +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final
|    |    +--- org.javassist:javassist:3.18.1-GA -> 3.20.0-GA
|    |    +--- antlr:antlr:2.7.7
|    |    +--- org.jboss:jandex:2.0.0.Final
|    |    +--- dom4j:dom4j:1.6.1
|    |    \--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final
|    |         \--- org.jboss.logging:jboss-logging:3.3.0.Final
|    +--- org.hibernate:hibernate-entitymanager:5.0.11.Final
|    |    +--- org.jboss.logging:jboss-logging:3.3.0.Final
|    |    +--- org.hibernate:hibernate-core:5.0.11.Final (*)
|    |    +--- dom4j:dom4j:1.6.1
|    |    +--- org.hibernate.common:hibernate-commons-annotations:5.0.1.Final (*)
|    |    +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final
|    |    \--- org.javassist:javassist:3.18.1-GA -> 3.20.0-GA
|    +--- javax.transaction:javax.transaction-api:1.2
|    +--- org.springframework.data:spring-data-jpa:1.10.3.RELEASE
|    |    +--- org.springframework.data:spring-data-commons:1.12.3.RELEASE
|    |    |    +--- org.springframework:spring-core:4.2.8.RELEASE -> 4.3.3.RELEASE (*)
|    |    |    +--- org.springframework:spring-beans:4.2.8.RELEASE -> 4.3.3.RELEASE (*)
|    |    |    +--- org.slf4j:slf4j-api:1.7.21
|    |    |    \--- org.slf4j:jcl-over-slf4j:1.7.21 (*)
|    |    +--- org.springframework:spring-orm:4.2.8.RELEASE -> 4.3.3.RELEASE
|    |    |    +--- org.springframework:spring-beans:4.3.3.RELEASE (*)
|    |    |    +--- org.springframework:spring-core:4.3.3.RELEASE (*)

方法2

Idea 操作

image

方法3

gradle-view插件

image

方法4

如果你嫌在命令行窗口展示观看不友好,这里还有一种体验更好的方式。

gradlew build --scan

输入yes同意,将会出现一个网页地址,登录该网址。

image

查看

image

猜你喜欢

转载自blog.csdn.net/weixin_37195606/article/details/81235286