Skip to content
Better HN
Top
New
Best
Ask
Show
Jobs
Search
⌘K
undefined | Better HN
0 points
geodel
10y ago
0 comments
Share
I have hundreds of jar in my Java project. I am not even sure which one are used. How does Java handle this scenario?
0 comments
default
newest
oldest
Nullabillity
10y ago
If you use Maven/Ivy then your transitive dependencies are automatically managed based on your direct dependencies. If you don't, or if that's not enough, use ProGuard to get rid of all the classes that you aren't actually using.
kasey_junk
10y ago
Depends on your build system. In maven
http://maven.apache.org/plugins/maven-dependency-plugin/
is the way to go.
j
/
k
navigate · click thread line to collapse