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:01 UTC

[2/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/4f5e1212
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/4f5e1212
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/4f5e1212

Branch: refs/heads/2_0_X
Commit: 4f5e12127bc39c9b8d38b6f78541887c5a4df24f
Parents: 28812f7
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:47 2018 +0200

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/4f5e1212/ide/pom.xml
----------------------------------------------------------------------
diff --git a/ide/pom.xml b/ide/pom.xml
index 362a938..e142343 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>