I copy-pasted an assembly config from the web and it doesn't work. it doesn't
like the <useAllReactorProjects> node under <moduleSet>.

I'm using maven 3.0.3.

Any ideas what may be wrong here:
{
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
   
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
http://maven.apache.org/xsd/assembly-1.1.2.xsd";>
  <id>bin</id>
  <formats>
    <format>dir</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <moduleSets>
    <moduleSet>
    
      
      <useAllReactorProjects>true</useAllReactorProjects>
      
      
      <includes>
        <include>com.inferlink.example:my-artifact</include>
      </includes>
      <binaries>
        <outputDirectory>modules/${artifactId}</outputDirectory>
        <unpack>false</unpack>
      </binaries>
    </moduleSet>
  </moduleSets>
</assembly>
}

--
View this message in context: 
http://maven.40175.n5.nabble.com/Unrecognised-tag-useAllReactorProjects-tp4613832p4613832.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to