You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "lillian angel (JIRA)" <ji...@codehaus.org> on 2011/09/12 22:27:07 UTC

[jira] Created: (MASSEMBLY-574) version 2.2.1

version 2.2.1 
--------------

                 Key: MASSEMBLY-574
                 URL: https://jira.codehaus.org/browse/MASSEMBLY-574
             Project: Maven 2.x Assembly Plugin
          Issue Type: Bug
         Environment: fedora 15, maven 2.2.1
            Reporter: lillian angel


"includeBaseDirectory" is ignored in 2.2.1, had to revert to 2.2-beta-2 for this to work


<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>dependencies</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <unpack>false</unpack>
            <unpackOptions>
                <excludes>
                    <exclude>META-INF/spring.handlers</exclude>
                    <exclude>META-INF/spring.schemas</exclude>
                    <exclude>META-INF/spring.tooling</exclude>
                </excludes>
            </unpackOptions>
            <scope>runtime</scope>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <outputDirectory>lib</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] (MASSEMBLY-574) includeBaseDirectory is ignored in version 2.2.1

Posted by "Dennis Lundberg (JIRA)" <ji...@codehaus.org>.
     [ https://jira.codehaus.org/browse/MASSEMBLY-574?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg updated MASSEMBLY-574:
--------------------------------------

          Description: 
"includeBaseDirectory" is ignored in 2.2.1, had to revert to 2.2-beta-2 for this to work

{code:xml}
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>dependencies</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <unpack>false</unpack>
            <unpackOptions>
                <excludes>
                    <exclude>META-INF/spring.handlers</exclude>
                    <exclude>META-INF/spring.schemas</exclude>
                    <exclude>META-INF/spring.tooling</exclude>
                </excludes>
            </unpackOptions>
            <scope>runtime</scope>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <outputDirectory>lib</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>
{code}

  was:
"includeBaseDirectory" is ignored in 2.2.1, had to revert to 2.2-beta-2 for this to work


<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>dependencies</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <unpack>false</unpack>
            <unpackOptions>
                <excludes>
                    <exclude>META-INF/spring.handlers</exclude>
                    <exclude>META-INF/spring.schemas</exclude>
                    <exclude>META-INF/spring.tooling</exclude>
                </excludes>
            </unpackOptions>
            <scope>runtime</scope>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <outputDirectory>lib</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

    Affects Version/s: 2.2.1
              Summary: includeBaseDirectory is ignored in version 2.2.1  (was: version 2.2.1 )
    
> includeBaseDirectory is ignored in version 2.2.1
> ------------------------------------------------
>
>                 Key: MASSEMBLY-574
>                 URL: https://jira.codehaus.org/browse/MASSEMBLY-574
>             Project: Maven 2.x Assembly Plugin
>          Issue Type: Bug
>    Affects Versions: 2.2.1
>         Environment: fedora 15, maven 2.2.1
>            Reporter: lillian angel
>
> "includeBaseDirectory" is ignored in 2.2.1, had to revert to 2.2-beta-2 for this to work
> {code:xml}
> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
>           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>           xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
>     <id>dependencies</id>
>     <formats>
>         <format>jar</format>
>     </formats>
>     <includeBaseDirectory>false</includeBaseDirectory>
>     <dependencySets>
>         <dependencySet>
>             <unpack>false</unpack>
>             <unpackOptions>
>                 <excludes>
>                     <exclude>META-INF/spring.handlers</exclude>
>                     <exclude>META-INF/spring.schemas</exclude>
>                     <exclude>META-INF/spring.tooling</exclude>
>                 </excludes>
>             </unpackOptions>
>             <scope>runtime</scope>
>         </dependencySet>
>     </dependencySets>
>     <fileSets>
>         <fileSet>
>             <outputDirectory>lib</outputDirectory>
>         </fileSet>
>     </fileSets>
> </assembly>
> {code}

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