Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre2017-09-26 09:16:40 +0000
committerQuentin Le Menez2017-11-08 13:06:27 +0000
commit7dd568a0b88181483c4bf343899bfecd32f93bb3 (patch)
tree247297ae73066d5f252f3717ae9c58ffb58412a7 /releng/pom.xml
parentadbe95f775bd762fe8c1acf6ab31df56cad9be24 (diff)
downloadorg.eclipse.papyrus-7dd568a0b88181483c4bf343899bfecd32f93bb3.tar.gz
org.eclipse.papyrus-7dd568a0b88181483c4bf343899bfecd32f93bb3.tar.xz
org.eclipse.papyrus-7dd568a0b88181483c4bf343899bfecd32f93bb3.zip
Bug 522500 - [developer] developer feature seems not to be installable
any more Actions - adding the repository reference to the category - adding the plugin used by tycho to in the pom.xml to reference the needed repository Change-Id: I5957b1a831503e197f2e6272afad79987e2dfd4a Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=522500 Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr> Also-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'releng/pom.xml')
-rw-r--r--releng/pom.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/releng/pom.xml b/releng/pom.xml
index 268b6cadd59..b43ad27bac9 100644
--- a/releng/pom.xml
+++ b/releng/pom.xml
@@ -30,7 +30,8 @@
<!-- Papyrus repositories. Used when we're building individual components
(vs building the parent pom including everything) -->
<papyrus.eclipse.target>photon</papyrus.eclipse.target>
- <eclipse.download>http://download.eclipse.org</eclipse.download> <!-- Deprecated; kept for Legacy. Can be set to file:/home/data/httpd/download.eclipse.org when building on HIPP -->
+ <eclipse.download>http://download.eclipse.org</eclipse.download> <!-- Deprecated; kept for Legacy. Can be set to file:/home/data/httpd/download.eclipse.org
+ when building on HIPP -->
<papyrus.repo.main>http://download.eclipse.org/modeling/mdt/papyrus/updates/nightly/${papyrus.eclipse.target}</papyrus.repo.main>
<papyrus.repo.dev>https://hudson.eclipse.org/papyrus/job/Papyrus-Master-Developer/lastSuccessfulBuild/artifact/repository/</papyrus.repo.dev>
</properties>
@@ -58,9 +59,14 @@
<!-- url>https://repo.eclipse.org/content/repositories/mylyn-releases/</url -->
<url>https://repo.eclipse.org/content/repositories/mylyn/</url>
</pluginRepository>
+ <pluginRepository>
+ <id>org.jboss.tools.tycho-plugins</id>
+ <url>https://repository.jboss.org/</url>
+ </pluginRepository>
</pluginRepositories>
+
<build>
- <outputDirectory>bin</outputDirectory>
+ <outputDirectory>bin</outputDirectory>
<pluginManagement>
<plugins>
<plugin>
@@ -138,10 +144,16 @@
</target>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.jboss.tools.tycho-plugins</groupId>
+ <artifactId>repository-utils</artifactId>
+ <version>0.26.0</version>
+ </plugin>
</plugins>
</pluginManagement>
</build>
-
+
<profiles>
<profile>
<id>eclipsehippIntegration</id>

Back to the top