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/07/27 12:35:11 UTC

syncope git commit: [SYNCOPE-809] Fixing -Psite build problems

Repository: syncope
Updated Branches:
  refs/heads/master b6bd80bee -> 1b325bb8e


[SYNCOPE-809] Fixing -Psite build problems


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

Branch: refs/heads/master
Commit: 1b325bb8e8ed2305a69f85adca6478aadaf30cb2
Parents: b6bd80b
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Wed Jul 27 14:35:01 2016 +0200
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Wed Jul 27 14:35:01 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/1b325bb8/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/pom.xml
----------------------------------------------------------------------
diff --git a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/pom.xml b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/pom.xml
index dc22daa..4b67c79 100644
--- a/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/pom.xml
+++ b/ide/eclipse/bundles/org.apache.syncope.ide.eclipse.plugin/pom.xml
@@ -73,6 +73,34 @@ under the License.
   
   <profiles>
     <profile>
+      <id>site</id>
+
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-dependency-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>copy-libraries</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>copy-dependencies</goal>
+                </goals>
+                <configuration>
+                  <outputDirectory>lib</outputDirectory>
+                  <overWriteReleases>true</overWriteReleases>
+                  <overWriteSnapshots>true</overWriteSnapshots>
+                  <stripVersion>true</stripVersion>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
       <id>apache-release</id>
 
       <build>