Incorrect FileSet causes infinite loop
--------------------------------------

                 Key: MASSEMBLY-187
                 URL: http://jira.codehaus.org/browse/MASSEMBLY-187
             Project: Maven 2.x Assembly Plugin
          Issue Type: Bug
    Affects Versions: 2.2
         Environment: Linux
JDK 1.5
Maven 2.0.4
            Reporter: Jimisola Laursen
            Priority: Minor


Using an incorrect FileSet (see example below) causes an infinite loop after 
"[INFO] Building jar: ..." have been outputed.

<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/ASSEMBLY/1.1.0-SNAPSHOT"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/1.1.0-SNAPSHOT 
http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd";>
  <id>package</id>
  <formats>
    <format>jar</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>

  <dependencySets>
    <dependencySet>
      <includes>
        <include>*:jar:*</include>
      </includes>
      <excludes>
        <exclude>*:sources</exclude>
      </excludes>
    </dependencySet>
  </dependencySets>

  <fileSets>
    <fileSet>
      <directory>target</directory>

    </fileSet>
  </fileSets>
</assembly>

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

        

Reply via email to