diff options
author | Kevin Sawicki <kevin@github.com> | 2012-02-22 14:50:25 -0800 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2012-06-05 00:37:30 +0200 |
commit | 036e40ef42b6461f1547b6b8e1b3dd896c26f69b (patch) | |
tree | 6ff24f3c60d413893650f53dcbc0391d60a80096 /pom.xml | |
parent | 2a18bb304caea46f9fb6fd5e1d37a13f53dc19e4 (diff) | |
download | jgit-036e40ef42b6461f1547b6b8e1b3dd896c26f69b.tar.gz jgit-036e40ef42b6461f1547b6b8e1b3dd896c26f69b.zip |
Configure maven-source-plugin execution in parent POM
This ensures all modules will have source jars built
Change-Id: I11a762f54cc8b059eff3bd99138a7efa9723b19f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -377,6 +377,20 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <inherited>true</inherited> + <executions> + <execution> + <id>attach-sources</id> + <phase>process-classes</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> |