Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2018-04-18 12:14:42 +0000
committerAndrey Loskutov2018-04-18 12:14:42 +0000
commitf17f520c62f46047356f18d5502a945768548512 (patch)
treee8c8a3ef48319d5b20a1eee1365ffaf7f7e04897
parent0b516b8a93ad64fb47a8be836e850b3600873541 (diff)
downloadeclipse.platform.releng-f17f520c62f46047356f18d5502a945768548512.tar.gz
eclipse.platform.releng-f17f520c62f46047356f18d5502a945768548512.tar.xz
eclipse.platform.releng-f17f520c62f46047356f18d5502a945768548512.zip
Bug 533753 - Errors trying to build 4.8 SDK locally
This change fixes "eclipse.platform.repository requires 'org.eclipse.releng.tools.source.feature.group 0.0.0' but it could not be found" error. Change-Id: Ie35060863e2cdfce79b79f4820c63e0f7ea05102
-rw-r--r--features/org.eclipse.releng.tools/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/features/org.eclipse.releng.tools/pom.xml b/features/org.eclipse.releng.tools/pom.xml
index f46e8078..401c788a 100644
--- a/features/org.eclipse.releng.tools/pom.xml
+++ b/features/org.eclipse.releng.tools/pom.xml
@@ -37,6 +37,20 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>

Back to the top