This is an incredibly silly question, I know... But I'm in the middle of converting a Java Project once built with Ant to do so with Apache Maven, instead. One of the steps I've read to accomplish this was to place all of the JAR's the project needed in the pom.xml file as a dependency. Now, since I'm not entirely too familiar with this project, was there any property setting I might be able to look at to view all of the JAR dependencies clearly? I know some are in the WEB-INF\lib directory, but looking at the original build.xml file for Ant, there seems to be more than those it was trying to add. Again, I'm very new at all of these concepts, but I was just hoping for an easy way to determine what dependencies a Java Project has so that I can add them -- or their Maven-equivalent -- to the pom.xml file. Any suggestions?
Edit: Here's part of what's confusing me. When I open the WAR file for the project that I'm trying to deploy with Apache Tomcat, these are the only JAR files I can find...
images
META-INF
util
WEB-INF
> classes
> lib
> jtds-1.2.4.jar
> jw-core-web-1.2.0.jar
> web.xml
blah.jsp
blah.jsp
blah.jsp
I assume I need these two files, at least. But when I open the build.xml file, I find a section like this:
<!-- Jars listed here are added to the generated war file -->
<fileset id="bundle.jars" dir="WebRoot/WEB-INF/lib">
<include name="base.jar"/>
<include name="ldap.jar"/>
<include name="junit.jar"/>
<include name="titan.jar"/>
<include name="activation.jar"/>
<include name="javamail-1.2.jar"/>
<include name="commons-httpclient.jar"/>
</fileset>
Granted, I didn't see any of these jars in the WAR file briefly expanded above. In addition, the JRE System Library is listed under my Package Explorer along with a list of JAR files. Now, do I need to add these to my dependency list as well? Here's what I've got:
JRE System Library
> resources.jar
> rt.jar
> jsse.jar
> jce.jar
> charsets.jar
> dnsns.jar
> dns_sd.jar
> localedata.jar
> sunjce_provider.jar