You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dennis Lundberg (JIRA)" <ji...@codehaus.org> on 2012/11/02 12:51:13 UTC

[jira] (MASSEMBLY-399) jar-with-dependencies descriptor adding files twice

     [ https://jira.codehaus.org/browse/MASSEMBLY-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg updated MASSEMBLY-399:
--------------------------------------

    Description: 
When generating a .jar with the project dependencies, files are being added twice to the jar (but in a location related to the absolute location).

When the plugin configuration is as follows:
{code:xml}
<plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2-beta-3</version>
                <configuration>
                  <descriptorRefs>
                     <descriptorRef>jar-with-dependencies</descriptorRef>            
                  </descriptorRefs> 
                  <archive>
                    <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
                  </archive>             
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
</plugin>
{code}

The generated jar is:

{noformat}
+ the-jar
  + com
      + ...
      + TheClass.class
   + C:    
      + workspace
         + ...
              + TheClass.class
{noformat}

that is, the files are being properly added from the project but, the C: folder should not exist (it contains, once more, the files located under com)

If using the plugin version 2.2-beta-2 the files are included twice as well but, the following way:

{noformat}
+ the-jar
  + com
      + TheClass.class
      + TheClass.class
{noformat}

whereas, if using version is 2.2-beta-1 the file is being generated properly (no duplicate files at all).





  was:
When generating a .jar with the project dependencies, files are being added twice to the jar (but in a location related to the absolute location).

When the plugin configuration is as follows:
<plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2-beta-3</version>
                <configuration>
                  <descriptorRefs>
                     <descriptorRef>jar-with-dependencies</descriptorRef>            
                  </descriptorRefs> 
                  <archive>
                    <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
                  </archive>             
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
</plugin>

The generated jar is:

+ the-jar
  + com
      + ...
      + TheClass.class
   + C:    
      + workspace
         + ...
              + TheClass.class

that is, the files are being properly added from the project but, the C: folder should not exist (it contains, once more, the files located under com)

If using the plugin version 2.2-beta-2 the files are included twice as well but, the following way:

+ the-jar
  + com
      + TheClass.class
      + TheClass.class

whereas, if using version is 2.2-beta-1 the file is being generated properly (no duplicate files at all).





    
> jar-with-dependencies descriptor adding files twice
> ---------------------------------------------------
>
>                 Key: MASSEMBLY-399
>                 URL: https://jira.codehaus.org/browse/MASSEMBLY-399
>             Project: Maven 2.x Assembly Plugin
>          Issue Type: Bug
>    Affects Versions: 2.2-beta-3
>         Environment: windows xp
> maven 2.0.7
>            Reporter: Soraya Sanchez
>            Assignee: John Casey
>
> When generating a .jar with the project dependencies, files are being added twice to the jar (but in a location related to the absolute location).
> When the plugin configuration is as follows:
> {code:xml}
> <plugin>
>                 <artifactId>maven-assembly-plugin</artifactId>
>                 <version>2.2-beta-3</version>
>                 <configuration>
>                   <descriptorRefs>
>                      <descriptorRef>jar-with-dependencies</descriptorRef>            
>                   </descriptorRefs> 
>                   <archive>
>                     <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
>                   </archive>             
>                 </configuration>
>                 <executions>
>                     <execution>
>                         <phase>package</phase>
>                         <goals>
>                             <goal>attached</goal>
>                         </goals>
>                     </execution>
>                 </executions>
> </plugin>
> {code}
> The generated jar is:
> {noformat}
> + the-jar
>   + com
>       + ...
>       + TheClass.class
>    + C:    
>       + workspace
>          + ...
>               + TheClass.class
> {noformat}
> that is, the files are being properly added from the project but, the C: folder should not exist (it contains, once more, the files located under com)
> If using the plugin version 2.2-beta-2 the files are included twice as well but, the following way:
> {noformat}
> + the-jar
>   + com
>       + TheClass.class
>       + TheClass.class
> {noformat}
> whereas, if using version is 2.2-beta-1 the file is being generated properly (no duplicate files at all).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira