Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorMarc-Andre Laperle2017-02-06 21:22:23 +0000
committerMarc-André Laperle2017-02-14 03:19:56 +0000
commit0046099052a16c40359b840b6f465f301fed1dd2 (patch)
tree44e44d29d71b7d385c6e2626c27bbc4396c597d7 /native
parentf78a7306b3cf7bf2d5d05fd07d592cedec25f63a (diff)
downloadorg.eclipse.cdt-0046099052a16c40359b840b6f465f301fed1dd2.tar.gz
org.eclipse.cdt-0046099052a16c40359b840b6f465f301fed1dd2.tar.xz
org.eclipse.cdt-0046099052a16c40359b840b6f465f301fed1dd2.zip
releng: Make use of Tycho POM-less functionality
This removes a lot of pom.xml from the source tree. This is using the "POM-less" Tycho functionality. See https://wiki.eclipse.org/Tycho/Release_Notes/0.24#POM-less_Tycho_builds One advantage of this is that you do not need to update the version in the pom.xml when you change it in the MANIFEST.MF because the pom.xml is automatically generated. This also reduces a lot of the duplicated information and pom.xml repetition. - Maven 3.3 and up is required. - Only eclipse-plugins and eclipse-features can be pom-less. Repositories, target and others still have pom.xml. - New parent poms are added because a parent is necessary directly one level above the plug-in/feature that will have its pom generated - Some test plug-ins had to be renamed .test -> .tests because it's required so that it detects that it's a test plug-in - Some suites were renamed so that they all use the same consistent name "AutomatedIntegrationSuite" - Profiles were added for the more common test configurations. They are activated by the presence of simple .properties files that only serve to activate the correct profile. The profiles: - One for UI tests (UI present and start in UI thread) - One for SWTBot tests (UI present and do not start in UI thread) Other test plug-ins that are too different are kept intact and still have a pom.xml - Fragments are kept intact since they all have different target platform configurations Change-Id: I9d73380eb766f547830c552daf08053a30b1845c Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Diffstat (limited to 'native')
-rw-r--r--native/org.eclipse.cdt.native.serial/pom.xml17
-rw-r--r--native/pom.xml18
2 files changed, 18 insertions, 17 deletions
diff --git a/native/org.eclipse.cdt.native.serial/pom.xml b/native/org.eclipse.cdt.native.serial/pom.xml
deleted file mode 100644
index abf0ea0a7a7..00000000000
--- a/native/org.eclipse.cdt.native.serial/pom.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?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.cdt</groupId>
- <artifactId>cdt-parent</artifactId>
- <version>9.3.0-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <version>1.0.0-SNAPSHOT</version>
- <artifactId>org.eclipse.cdt.native.serial</artifactId>
- <packaging>eclipse-plugin</packaging>
-</project>
diff --git a/native/pom.xml b/native/pom.xml
new file mode 100644
index 00000000000..a28abdc1564
--- /dev/null
+++ b/native/pom.xml
@@ -0,0 +1,18 @@
+<?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.cdt</groupId>
+ <artifactId>cdt-parent</artifactId>
+ <version>9.3.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.cdt.native-parent</artifactId>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.eclipse.cdt.native.serial</module>
+ </modules>
+</project>

Back to the top