I'd like to make 2 dependencies in the JSF-Demo application 'target' specific
The dependency on jsp-api is conditional, depending on the target application server, or deployment:


<dependency>
<groupId>jspapi</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0-20040521</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>


It is required for Tomcat 4, but for Tomcat 5 it is not.
Does anyone know if Maven or Maven-2 will have support for deployment-specific dependencies?


In the meantime, I've simply unconditionally added the dependencies


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to