You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Nadeem Bitar (JIRA)" <ji...@codehaus.org> on 2005/08/08 12:12:58 UTC

[jira] Commented: (MEV-58) commons-el missing dependency scope

    [ http://jira.codehaus.org/browse/MEV-58?page=comments#action_44102 ] 

Nadeem Bitar commented on MEV-58:
---------------------------------

I made a mistake, the scope should be "provided" not compile for the servletapi and jsfapi

The corrected dependency again:

<dependency>
      <groupId>servletapi</groupId>
      <artifactId>servletapi</artifactId>
      <version>2.4-20040521</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>jspapi</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.0-20040521</version>
      <scope>provided</scope>
    </dependency>

> commons-el missing dependency scope 
> ------------------------------------
>
>          Key: MEV-58
>          URL: http://jira.codehaus.org/browse/MEV-58
>      Project: Maven Evangelism
>         Type: Bug
>   Components: Invalid POM
>     Reporter: Nadeem Bitar

>
>
> The servletapi and jspapi should be a compile time dependency. The "<scope>compile</scope>" is missing inside the POM. Omitting the scope will cause the servletapi and jspapi jars to be bundled inside the WAR causing conflicts when deploying to tomcat 5.5.  
> <dependency>
>       <groupId>servletapi</groupId>
>       <artifactId>servletapi</artifactId>
>       <version>2.4-20040521</version>
>       <scope>compile</scope>
>     </dependency>
>     <dependency>
>       <groupId>jspapi</groupId>
>       <artifactId>jsp-api</artifactId>
>       <version>2.0-20040521</version>
>       <scope>compile</scope>
>     </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org