Hi there,

I have a big multi-module project where I have also added a module which
is for three assemblies only
<project ...
  <parent>...</parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>assemblies</artifactId>
  <packaging>pom</packaging>
  <name>Assemblies</name>
  ...
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <executions>
       <execution>
          <id>assemblyOne</id>
          <phase>package</phase>
          <goals>
           <goal>single</goal>
          </goals>
          <configuration>
             <descriptors>
               <descriptor>assemblyOne.xml</descriptor>
             </descriptors>
           <finalName>assemblyOne-${project.version}</finalName>
           <workDirectory>target/assembly/work</workDirectory>
          </configuration>
       </execution>
       <execution>
         <id>assemblyTwo</id>
         ...
All three jar files are created correctly under target/assembly/work,
but for "install" all of them will be copied to local repository as
assemblies-1.0-SNAPSHOT.jar, overwriting themselves. I also tried the
goal "attached", same result.

How do I do that? Any hints ?


Thanks in advance

Mirko
-- 
Mirko Leschikar
Agile Software GmbH
Firmensitz: Ruschgraben 133, 76139 Karlsruhe
Registergericht: Amtsgericht Mannheim HRB 109835
Geschäftsführung: Carolyn V. Aver, Livio Michelich, Martin Allemann



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

Reply via email to