Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2016-06-09 18:43:39 +0000
committerMat Booth2016-09-13 16:04:04 +0000
commitc79dfa48cfcd72a0d4c76220c5f96ac5eb037239 (patch)
tree2c4be70155b87b71947376fe56a94d37b55e9c6c /examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer
parent2f4b1f4c3b3c8b921b3faf4ef9a15785cbcc6b34 (diff)
downloadorg.eclipse.ecf-c79dfa48cfcd72a0d4c76220c5f96ac5eb037239.tar.gz
org.eclipse.ecf-c79dfa48cfcd72a0d4c76220c5f96ac5eb037239.tar.xz
org.eclipse.ecf-c79dfa48cfcd72a0d4c76220c5f96ac5eb037239.zip
Bug 396457 - [Releng][Maven] Create a build based on tycho
Second part of adding the necessary machinery to build ECF with tycho -- it now builds the whole SDK. The resulting p2 site should now contain the same bundles as the p2 site generated by buckminster. Due to the target platform needing APIs available only in Java 1.4, some bundles have had their compilation profiles bumped up from Java 1.3. In these cases the BREE remains unchanged. In order to preserve compatibility with the Java 1.5 BREE specified in the jive smack library, some @Override annotations were removed. Change-Id: I7b6acce0ef1204d0ad0146218694c8722c3dbcd8 Signed-off-by: Mat Booth <mat.booth@redhat.com>
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/pom.xml b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/pom.xml
new file mode 100644
index 000000000..edbb07627
--- /dev/null
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/pom.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.ecf</groupId>
+ <artifactId>ecf-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.ecf</groupId>
+ <artifactId>org.eclipse.ecf.examples.remoteservices.hello.ds.consumer</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top