You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ss...@apache.org on 2013/02/26 16:06:24 UTC

[1/4] git commit: added building of source artifacts to build pom

added building of source artifacts to build pom


Project: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/commit/e4cb722e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/tree/e4cb722e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-marmotta/diff/e4cb722e

Branch: refs/heads/master
Commit: e4cb722ef816ccb73ada29ceef64506ca9c73238
Parents: 045f868
Author: Sebastian Schaffert <ss...@apache.org>
Authored: Tue Feb 26 15:10:37 2013 +0100
Committer: Sebastian Schaffert <ss...@apache.org>
Committed: Tue Feb 26 15:10:37 2013 +0100

----------------------------------------------------------------------
 parent/pom.xml |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-marmotta/blob/e4cb722e/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index a9ffdb4..2c9152b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -466,6 +466,20 @@
                 <artifactId>jrebel-maven-plugin</artifactId>
             </plugin>
             <plugin>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>bundle-sources</id>
+                        <phase>package</phase>
+                        <goals>
+                            <!-- produce source artifact for main project sources -->
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.rat</groupId>
                 <artifactId>apache-rat-plugin</artifactId>
             </plugin>