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

[jira] Created: (MNG-579) a dependency of type tld is not added to the package

a dependency of type tld is not added to the package
----------------------------------------------------

         Key: MNG-579
         URL: http://jira.codehaus.org/browse/MNG-579
     Project: Maven 2
        Type: Bug
  Components: maven-plugins  
    Versions: 2.0-alpha-3    
 Environment: Windows XP SP2 jdk 5.0
 Reporter: Dennisg Geurts
    Priority: Minor



the project package is set to 'war'

a dependency is added as follows:
<dependency>
  <groupId>spring</groupId>
  <artifactId>spring</artifactId>
  <version>1.0.2</version>
  <scope>runtime</scope>
  <type>tld</type>
</dependency>


running  'm2 clean:clean package'
does NOT add the spring-1.0.2.tld to the war file




-- 
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


[jira] Closed: (MNG-579) a dependency of type tld is not added to the package

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-579?page=all ]
     
Brett Porter closed MNG-579:
----------------------------

     Assign To: Brett Porter
    Resolution: Fixed

> a dependency of type tld is not added to the package
> ----------------------------------------------------
>
>          Key: MNG-579
>          URL: http://jira.codehaus.org/browse/MNG-579
>      Project: Maven 2
>         Type: Bug
>   Components: maven-plugins
>     Versions: 2.0-alpha-3
>  Environment: Windows XP SP2 jdk 5.0
>     Reporter: Dennis Geurts
>     Assignee: Brett Porter
>     Priority: Minor
>      Fix For: 2.0-beta-1
>  Attachments: MNG-579.patch
>
>
> the project package is set to 'war'
> a dependency is added as follows:
> <dependency>
>   <groupId>spring</groupId>
>   <artifactId>spring</artifactId>
>   <version>1.0.2</version>
>   <scope>runtime</scope>
>   <type>tld</type>
> </dependency>
> running  'm2 clean:clean package'
> does NOT add the spring-1.0.2.tld to the war file

-- 
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


[jira] Updated: (MNG-579) a dependency of type tld is not added to the package

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-579?page=all ]

Brett Porter updated MNG-579:
-----------------------------

    Description: 
the project package is set to 'war'

a dependency is added as follows:
<dependency>
  <groupId>spring</groupId>
  <artifactId>spring</artifactId>
  <version>1.0.2</version>
  <scope>runtime</scope>
  <type>tld</type>
</dependency>


running  'm2 clean:clean package'
does NOT add the spring-1.0.2.tld to the war file




  was:

the project package is set to 'war'

a dependency is added as follows:
<dependency>
  <groupId>spring</groupId>
  <artifactId>spring</artifactId>
  <version>1.0.2</version>
  <scope>runtime</scope>
  <type>tld</type>
</dependency>


running  'm2 clean:clean package'
does NOT add the spring-1.0.2.tld to the war file




    Fix Version: 2.0-beta-1

> a dependency of type tld is not added to the package
> ----------------------------------------------------
>
>          Key: MNG-579
>          URL: http://jira.codehaus.org/browse/MNG-579
>      Project: Maven 2
>         Type: Bug
>   Components: maven-plugins
>     Versions: 2.0-alpha-3
>  Environment: Windows XP SP2 jdk 5.0
>     Reporter: Dennis Geurts
>     Priority: Minor
>      Fix For: 2.0-beta-1
>  Attachments: MNG-579.patch
>
>
> the project package is set to 'war'
> a dependency is added as follows:
> <dependency>
>   <groupId>spring</groupId>
>   <artifactId>spring</artifactId>
>   <version>1.0.2</version>
>   <scope>runtime</scope>
>   <type>tld</type>
> </dependency>
> running  'm2 clean:clean package'
> does NOT add the spring-1.0.2.tld to the war file

-- 
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


[jira] Updated: (MNG-579) a dependency of type tld is not added to the package

Posted by "Kenney Westerhof (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-579?page=all ]

Kenney Westerhof updated MNG-579:
---------------------------------

    Attachment: MNG-579.patch

this patch fixes the tld handling.

Sample pom to test it:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>maven-tests</groupId>
  <artifactId>war-tld</artifactId>
  <packaging>war</packaging>
  <version>2.0-beta-1-SNAPSHOT</version>

  <dependencies>
    <dependency>
      <groupId>spring</groupId>
      <artifactId>spring</artifactId>
      <version>1.0.2</version>
      <scope>runtime</scope>
      <type>tld</type>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
          <webXml>src/webapp/WEB-INF/web.xml</webXml>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>


> a dependency of type tld is not added to the package
> ----------------------------------------------------
>
>          Key: MNG-579
>          URL: http://jira.codehaus.org/browse/MNG-579
>      Project: Maven 2
>         Type: Bug
>   Components: maven-plugins
>     Versions: 2.0-alpha-3
>  Environment: Windows XP SP2 jdk 5.0
>     Reporter: Dennis Geurts
>     Priority: Minor
>  Attachments: MNG-579.patch
>
>
> the project package is set to 'war'
> a dependency is added as follows:
> <dependency>
>   <groupId>spring</groupId>
>   <artifactId>spring</artifactId>
>   <version>1.0.2</version>
>   <scope>runtime</scope>
>   <type>tld</type>
> </dependency>
> running  'm2 clean:clean package'
> does NOT add the spring-1.0.2.tld to the war file

-- 
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