Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.4, 2.1
-
Fix Version/s: 2.2
-
Labels:None
-
Number of attachments :
Description
We defined the sources plugin in a master.pom but I would like to disable/skip the bundling of the sources during development in a derived pom.
See discussion http://www.nabble.com/How-do-I-turn-off-the-maven-source-plugin-altogether--td24739485.html
Issue Links
- duplicates
-
MSOURCES-55
Add a skip configuration to source plugin
-
Found an alternative way to disable the bundling of the sources:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>some-id</id>
<phase>none</phase>
</execution>
</executions>
</plugin>