Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-08-19 14:43:23 +0000
committerLars Vogel2015-08-19 15:55:37 +0000
commit14360cb54932c6d56d2b63596a546e8a072c5068 (patch)
tree3d3fd60c1a908a0b055ae152367ee969bd9ae4aa /pom.xml
parent9fcb5dbe062bd044c550e9bd9316253ec614182c (diff)
downloadeclipse.platform.ua-14360cb54932c6d56d2b63596a546e8a072c5068.tar.gz
eclipse.platform.ua-14360cb54932c6d56d2b63596a546e8a072c5068.tar.xz
eclipse.platform.ua-14360cb54932c6d56d2b63596a546e8a072c5068.zip
Change-Id: I5ca66c19d7ec4e797553b2e31cd9480164b00450 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml38
1 files changed, 25 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index f784405f5..30da0e4d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2014 Eclipse Foundation and others.
+ Copyright (c) 2012, 2015 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Igor Fedorenko - initial implementation
+ Lars Vogel <Lars.Vogel@vogella.com> - Bug 471835
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -25,18 +26,29 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.ua.git</tycho.scmUrl>
</properties>
- <repositories>
- <repository>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <id>eclipse-hosted</id>
- <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
- </repository>
- </repositories>
+ <!--
+ To build individual bundles, we specify a repository where to find parent pom,
+ in case it is not in local maven cache already
+ and that parent pom also has fuller individual-bundle profile
+ defined that is combined with this one. -->
+ <profiles>
+ <profile>
+ <id>build-individual-bundles</id>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse-hosted</id>
+ <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
+ </repository>
+ </repositories>
+ </profile>
+ </profiles>
+
<modules>
<module>org.eclipse.help</module>
<module>org.eclipse.help.base</module>

Back to the top