博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Maven Learning - Direct Dependencies & Transitive Dependencies
阅读量:5949 次
发布时间:2019-06-19

本文共 643 字,大约阅读时间需要 2 分钟。

Dependencies declared in your project's pom.xml file often have their own dependencies.

The main dependencies are called direct dependencies.

And the sub dependencies on which the direct dependencies relied on are called transitive dependencies.

eg:

You have a direct dependency called Hibernate Core, and the Hibernate Core requires JBoss Logging, dom4j, javaassist etc to function properly.

The dependencies such as dom4j, javaassist, JBoss logging are considered as your project's transitive dependencies.

The very important key benefit of Maven is that it automatically deals with transitive dependencies and includes them in your project.

 

转载地址:http://rzsxx.baihongyu.com/

你可能感兴趣的文章
C++ sqlite3解决中文排序问题
查看>>
Call to a member function allowField() on null 错误总结
查看>>
2019 年 5 月 Android 开发热门开源项目
查看>>
线程关键字、锁、同步集合笔记
查看>>
前端规范之HTML 规范
查看>>
小程序营销组件
查看>>
大数据学习笔记1
查看>>
【NOIP】提高组2016 愤怒的小鸟
查看>>
leetcode 326. Power of Three
查看>>
陈云峰:区块链技术在金融领域的应用与思考
查看>>
time.js 时间函数库
查看>>
部署模式 - 每个主机多个服务实例
查看>>
COJS:1829. [Tyvj 1728]普通平衡树
查看>>
SpringBoot 教程之 profile
查看>>
面试题编程题08-python 垃圾回收机制
查看>>
排序--冒泡
查看>>
java中int->String 3种方式效率分析
查看>>
Android 内存管理 &Memory Leak & OOM 分析
查看>>
你所能用到的数据结构(八)
查看>>
(转)谁是真正的程序语言专家
查看>>