You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2016/09/01 15:14:35 UTC

syncope git commit: Excluding Eclipse's lib files from sources

Repository: syncope
Updated Branches:
  refs/heads/master 41a399bd4 -> 4b73740ac


Excluding Eclipse's lib files from sources


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/4b73740a
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/4b73740a
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/4b73740a

Branch: refs/heads/master
Commit: 4b73740acf1412ba065aa930ffe755768ebcc32f
Parents: 41a399b
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Thu Sep 1 17:14:24 2016 +0200
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Thu Sep 1 17:14:24 2016 +0200

----------------------------------------------------------------------
 pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/4b73740a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4243ee8..0408979 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1824,6 +1824,25 @@ under the License.
         <plugins>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>3.0.1</version>
+            <configuration>
+              <excludes>
+                <exclude>**/ide/eclipse/**/lib/**</exclude>
+              </excludes>
+            </configuration>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-deploy-plugin</artifactId>
             <version>2.8.2</version>
           </plugin>