Where can I find jar dependencies versions for each JBoss release?
I need to easily find what version of, let's say, JGroups bundled with JBoss 4.2.3.
Is there some documentation, wiki, or something else w开发者_C百科here I can find this information easily?
https://anonsvn.jboss.org/repos/jbossas/tags/JBoss_4_2_3_GA/build/build-thirdparty.xml
In your specific case, it uses JGroups 2.4.1.SP4. For newer JBoss versions, there's a "component-matrix" directory with a pom.xml with all versions:
https://anonsvn.jboss.org/repos/jbossas/tags/JBoss_5_1_0_GA/component-matrix/pom.xml
If you want to know the dependencies for a single JAR file or an application, then you can have a look at Tattletale project which helps you also to find missing classes from the classpath, spot if a class/package is located in multiple JAR files and much more. Here you can find also a Tattletale tutorial.
Hope it helps
Francesco
精彩评论