Hi Mike,

Mike Schrag wrote:
 i'm guessing maven
probably just has an answer to this -- build dependency jars that aren't deployment dependency jars, so they probably don't have to worry about it?


<dependency>
   <groupId>javax.servlet</groupId>
   <artifactId>servlet-api</artifactId>
   <version>2.4</version>
   <scope>provided</scope>
</dependency>

When you set the scope of a dependency as "provided", the dependency is used to compile and is added to the classpath during development, but is not added to the final package produced by Maven. :)

Cheers,

Henrique
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to