This list really works better if you post what you've done and then tell us why its not working the way you wanted, or an error message you got, etc. Looking at what you sent, I have no idea if it is working how you expect or not.
Sending your pom and assembly.xml file is probably not going to give you the results you are hoping for. So, send a reply and be more clear about what you've got vs what you want etc. Wayne On 3/6/08, krishnan.1000 <[EMAIL PROTECTED]> wrote: > > Hi, > > I am a Maven newbie and I hope this is not a stupid question. I am trying > to create two Maven assembly jars for modules Foo and Bar. My project -- > | > |------- Bar > |------- Foo > |--------Foo-A > |------- Foo-B > > > This is my project structure. In this project, FOO-A is dependent on Foo-B > and Bar ,Foo are dependent upon FOO-A. I am trying to build assembly jars > for both the for both Foo and Bar modules. Can you please help me? > > My project pom is as follows. > > <modules> > <module>Bar</module> > <module>Foo</module> > <module>Foo-A</module> > <module>Foo-B</module> > </modules> > > <dependencies> > <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <version>1.2.13</version> > <scope>compile</scope> > </dependency> > > ...... > </dependencies> > > <build> > <plugins> > <plugin> > <artifactId>maven-assembly-plugin</artifactId> > <configuration> > <descriptors> > <descriptor>assembly.xml</descriptor> > </descriptors> > <tarLongFileMode>gnu</tarLongFileMode> > </configuration> > </plugin> > </build> > > <pluginRepositories> > <pluginRepository> > <id>apache.snapshots</id> > <url>http://people.apache.org/repo/m2-snapshot-repository/</url> > </pluginRepository> > </pluginRepositories> > > My assembly.xml > > <assembly> > <id>jar-with-dependencies</id> > <formats> > <format>jar</format> > </formats> > <includeBaseDirectory>false</includeBaseDirectory> > <fileSets> > <fileSet> > <directory>target/classes</directory> > <outputDirectory>/</outputDirectory> > </fileSet> > </fileSets> > <dependencySets> > <dependencySet> > <outputDirectory>/</outputDirectory> > <unpack>false</unpack> > <scope>runtime</scope> > </dependencySet> > </dependencySets> > </assembly> > > > -- > View this message in context: > http://www.nabble.com/Maven-Assembly-for-MultiModule-project-tp15885942s177p15885942.html > Sent from the Maven - Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
