vote up 3 vote down star
1

I put together an assembly descriptor

<assembly>
<id>all</id>
<formats>
	<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
	<moduleSet>
		<includes>
			<include>org.openscada.atlantis:org.openscada.atlantis.core.common</include>
			<include>org.openscada.atlantis:org.openscada.atlantis.net.base</include>
			<include>org.openscada.atlantis:org.openscada.atlantis.core.net.base</include>
			... some more ...
			<include>org.openscada.atlantis:org.openscada.atlantis.spring.components</include>
		</includes>
		<binaries>
			<includeDependencies>true</includeDependencies>
			<outputDirectory>bin</outputDirectory>
			<unpack>false</unpack>
			<dependencySets>
				<dependencySet>
					<outputDirectory>lib</outputDirectory>
					<useTransitiveFiltering>true</useTransitiveFiltering>
				</dependencySet>
			</dependencySets>
		</binaries>
	</moduleSet>
</moduleSets>
</assembly>

nothing special, but now my dependencies are included within the zip file multiple times (the exact same files). Why does this happen, and how can I prevent this? (I thought maybe the use of useTransitiveFiltering would prevent it, but no)

To illustrate how it looks within the zip file here a illustration:

Screenshot Zip File

flag

46% accept rate

1 Answer

vote up 7 vote down check

That is a bug in the assembly plugin. I also noticed that about a year ago. The latest version of the assembly plugin does not have the problem. I would recommend updating the version of the assembly plugin you are using to 2.2 beta 3. It should resolve your issue.

  <plugin>
      <artifactId>maven-assembly-plugin</artifactId>
      <groupId>org.apache.maven.plugins</groupId>
      <version>2.2-beta-3</version>
  </plugin>
link|flag
it did resolve the problem indeed :-) – Mauli May 11 at 15:38
Thank you! I was scratching my head about this too. – aberrant80 Jul 6 at 7:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.