On 1/20/07, berndq <[EMAIL PROTECTED]> wrote:
Barrie,

I tried with and without values, always the same error,
even with your new suggestion.

                  <descriptor>src/main/assembly/server.xml</descriptor>
[del]
                  <descriptor>src/main/assembly/client.xml</descriptor>

And you are sure these files exist?

I have the following in my pom and it correctly runs both the "bin"
and "project" assemblies:

     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-assembly-plugin</artifactId>
       <executions>
         <execution>
           <id>assembly:package-bin</id>
           <phase>package</phase>
           <goals>
             <!--
               Work around for http://jira.codehaus.org/browse/MASSEMBLY-97
               as the goal should be attached.
             -->
             <goal>single</goal>
           </goals>
           <configuration>
             <descriptors>
               <descriptor>
                 src/main/assembly/bin.xml
               </descriptor>
             </descriptors>
           </configuration>
         </execution>
         <execution>
           <id>assembly:package-project</id>
           <phase>package</phase>
           <goals>
             <!--
               Work around for http://jira.codehaus.org/browse/MASSEMBLY-97
               as the goal should be attached.
             -->
             <goal>single</goal>
           </goals>
           <configuration>
             <descriptors>
               <!-- Available as a predefined descriptor in 2.2 -->
               <descriptor>
                 src/main/assembly/project.xml
               </descriptor>
             </descriptors>
           </configuration>
         </execution>
       </executions>
     </plugin>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to