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 2018/10/16 05:30:02 UTC

[3/3] syncope git commit: Allow to exclude the Eclipse module from the build, always causing troubles because of the P2 update site unreachable

Allow to exclude the Eclipse module from the build, always causing troubles because of the P2 update site unreachable


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

Branch: refs/heads/master
Commit: a9854644a50d1377f112c0e6e37e6637553dfada
Parents: b570430
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Tue Oct 16 07:29:34 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Tue Oct 16 07:29:52 2018 +0200

----------------------------------------------------------------------
 ide/pom.xml | 30 +++++++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/a9854644/ide/pom.xml
----------------------------------------------------------------------
diff --git a/ide/pom.xml b/ide/pom.xml
index f654ab2..2c45b30 100644
--- a/ide/pom.xml
+++ b/ide/pom.xml
@@ -35,13 +35,33 @@ under the License.
     <rootpom.basedir>${basedir}/..</rootpom.basedir>
   </properties>
 
-  <modules>
-    <module>eclipse</module>
-    <module>netbeans</module>
-  </modules>
-
   <profiles>
     <profile>
+      <id>without-eclipse</id>
+
+      <activation>
+	<activeByDefault>false</activeByDefault>
+      </activation>
+
+      <modules>
+	<module>netbeans</module>
+      </modules>
+    </profile>
+
+    <profile>
+      <id>with-eclipse</id>
+
+      <activation>
+	<activeByDefault>true</activeByDefault>
+      </activation>
+
+      <modules>
+	<module>eclipse</module>
+	<module>netbeans</module>
+      </modules>
+    </profile>
+
+    <profile>
       <id>site</id>
 
       <build>