Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/xlc
diff options
context:
space:
mode:
authorDoug Schaefer2017-10-05 00:47:32 +0000
committerDoug Schaefer2017-10-06 20:36:51 +0000
commit11dcec43f211e694b0c8f811be37f34868a4cdf0 (patch)
tree8193e40cdce02c23518368667008d99488d7bf02 /xlc
parentcfd6e9867ede236878072ed630478685fd43cba0 (diff)
downloadorg.eclipse.cdt-11dcec43f211e694b0c8f811be37f34868a4cdf0.tar.gz
org.eclipse.cdt-11dcec43f211e694b0c8f811be37f34868a4cdf0.tar.xz
org.eclipse.cdt-11dcec43f211e694b0c8f811be37f34868a4cdf0.zip
Add UI tests plugin for CMake. Fix a couple of bugs it found.
Also restructures the pom.xmls to put the modules in the top level so we can order them to have the test plugins build after them. Change-Id: I2f0e4ebd252791fb8844cdf0f635d574946207aa
Diffstat (limited to 'xlc')
-rw-r--r--xlc/pom.xml35
1 files changed, 10 insertions, 25 deletions
diff --git a/xlc/pom.xml b/xlc/pom.xml
index ec5b5c4e9b4..c42507a8fe0 100644
--- a/xlc/pom.xml
+++ b/xlc/pom.xml
@@ -1,30 +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>
+ 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>
+ <parent>
+ <groupId>org.eclipse.cdt</groupId>
+ <artifactId>cdt-parent</artifactId>
+ <version>9.3.0-SNAPSHOT</version>
+ </parent>
- <artifactId>org.eclipse.cdt.xlc-parent</artifactId>
- <packaging>pom</packaging>
-
- <modules>
- <module>org.eclipse.cdt.core.lrparser.xlc</module>
- <module>org.eclipse.cdt.errorparsers.xlc</module>
- <module>org.eclipse.cdt.make.xlc.core</module>
- <module>org.eclipse.cdt.managedbuilder.xlc.core</module>
- <module>org.eclipse.cdt.managedbuilder.xlc.ui</module>
- <module>org.eclipse.cdt.managedbuilder.xlupc.ui</module>
- <module>org.eclipse.cdt.xlc.feature</module>
- <module>org.eclipse.cdt.xlc.sdk-feature</module>
- <module>org.eclipse.cdt.errorparsers.xlc.tests</module>
-<!--
- <module>org.eclipse.cdt.core.lrparser.xlc.tests</module>
--->
- </modules>
+ <artifactId>org.eclipse.cdt.xlc-parent</artifactId>
+ <packaging>pom</packaging>
</project>

Back to the top