Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Oberlies2015-03-09 17:23:39 +0000
committerAlexander Kurtakov2015-03-16 12:29:27 +0000
commitf80da13bc43b4b5c9267a50f3864b2511c02a7f4 (patch)
tree4be4af310fc5d868e510fd412641a536b92552ac /examples/org.eclipse.swt.examples/pom.xml
parenta84c4f3464a5f713e18d5891323717c2051b011d (diff)
downloadeclipse.platform.swt-f80da13bc43b4b5c9267a50f3864b2511c02a7f4.tar.gz
eclipse.platform.swt-f80da13bc43b4b5c9267a50f3864b2511c02a7f4.tar.xz
eclipse.platform.swt-f80da13bc43b4b5c9267a50f3864b2511c02a7f4.zip
461427 Add build-time dependency to arbitrary SWT fragment version
- When building the org.eclipse.swt project without having org.eclipse.swt.binaries in the reactor, there are no SWT fragments which exactly match the version of the SWT host bundle. Therefore, we need a different way to pull in the fragments. With this change, this is done via a (build time only) bundle with has a p2.inf similar to org.eclipse.swt, but without the strict version ranges. Bug: 461427 Change-Id: I15db9620e0011b4e232ff5adb52504830c7b1662 Signed-off-by: Tobias Oberlies <tobias.oberlies@sap.com> Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'examples/org.eclipse.swt.examples/pom.xml')
-rw-r--r--examples/org.eclipse.swt.examples/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/org.eclipse.swt.examples/pom.xml b/examples/org.eclipse.swt.examples/pom.xml
index 4d8d87962c..1cb05d270a 100644
--- a/examples/org.eclipse.swt.examples/pom.xml
+++ b/examples/org.eclipse.swt.examples/pom.xml
@@ -12,10 +12,10 @@
<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>
<parent>
- <artifactId>eclipse.platform.swt</artifactId>
+ <artifactId>eclipse.platform.swt.localbuild</artifactId>
<groupId>eclipse.platform.swt</groupId>
<version>4.5.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
+ <relativePath>../../local-build/local-build-parent/</relativePath>
</parent>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.examples</artifactId>

Back to the top