aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorKevin Sawicki <kevin@github.com>2012-02-22 14:50:25 -0800
committerMatthias Sohn <matthias.sohn@sap.com>2012-06-05 00:37:30 +0200
commit036e40ef42b6461f1547b6b8e1b3dd896c26f69b (patch)
tree6ff24f3c60d413893650f53dcbc0391d60a80096 /pom.xml
parent2a18bb304caea46f9fb6fd5e1d37a13f53dc19e4 (diff)
downloadjgit-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.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index cf744197d6..09deec6aef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>