Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2011-06-28 09:21:58 +0000
committerDoug Schaefer2011-06-28 09:21:58 +0000
commitd7092b12c93925f6f7c4725a5abc72e55650621c (patch)
treea56beb589253ae456ce03c053dfc11a26e60c664 /core/org.eclipse.cdt.core.win32/pom.xml
parent28cc2eb084d04d349cf3bbbc407c9264495d25ef (diff)
downloadorg.eclipse.cdt-d7092b12c93925f6f7c4725a5abc72e55650621c.tar.gz
org.eclipse.cdt-d7092b12c93925f6f7c4725a5abc72e55650621c.tar.xz
org.eclipse.cdt-d7092b12c93925f6f7c4725a5abc72e55650621c.zip
Mavenizing CDT releng.
Also removed unsupported cdt.core fragments from the platform feature.
Diffstat (limited to 'core/org.eclipse.cdt.core.win32/pom.xml')
-rw-r--r--core/org.eclipse.cdt.core.win32/pom.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.win32/pom.xml b/core/org.eclipse.cdt.core.win32/pom.xml
new file mode 100644
index 00000000000..edd2b394532
--- /dev/null
+++ b/core/org.eclipse.cdt.core.win32/pom.xml
@@ -0,0 +1,44 @@
+<?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>8.0.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <version>5.2.0-SNAPSHOT</version>
+ <artifactId>org.eclipse.cdt.core.win32</artifactId>
+ <packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <resolver>p2</resolver>
+ <pomDependencies>consider</pomDependencies>
+ <environments>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top