imesh
imesh

Reputation: 1634

How to exclude target folder from maven source packages generated with mvn deploy?

When I run mvn deploy it seems like the generated source packages include target folder with its content. Really appreciate any clues on how to avoid this.

POM file: https://github.com/apache/incubator-stratos/blob/master/pom.xml

Thanks

Upvotes: 0

Views: 176

Answers (1)

imesh
imesh

Reputation: 1634

After doing some investigations I found the cause of the problem. The issue was with the maven assembly plugin version 2.2-beta-2. Upgraded it to 2.2.1 and the problem was solved. Thanks khmarbaise for your feedback!

Upvotes: 1

Related Questions