Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2012-05-18 18:21:20 +0000
committerSzymon Brandys2012-05-22 11:48:22 +0000
commita4b14e222b8efca995aabcaa5c67dde941d8968e (patch)
treedb232b7af55778f3bd80301463f94e5cb14c59fe /features/org.eclipse.cvs-feature
parent1f8ef0df0f4919bdbeaa5073c138317fa22119a6 (diff)
downloadeclipse.platform.team-a4b14e222b8efca995aabcaa5c67dde941d8968e.tar.gz
eclipse.platform.team-a4b14e222b8efca995aabcaa5c67dde941d8968e.tar.xz
eclipse.platform.team-a4b14e222b8efca995aabcaa5c67dde941d8968e.zip
Add poms for Tycho buildv20120522-1148
Diffstat (limited to 'features/org.eclipse.cvs-feature')
-rw-r--r--features/org.eclipse.cvs-feature/pom.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/features/org.eclipse.cvs-feature/pom.xml b/features/org.eclipse.cvs-feature/pom.xml
new file mode 100644
index 000000000..5aa8430be
--- /dev/null
+++ b/features/org.eclipse.cvs-feature/pom.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 Eclipse Foundation.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Igor Fedorenko - initial implementation
+-->
+
+<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>
+ <artifactId>eclipse.platform.team</artifactId>
+ <groupId>eclipse.platform.team</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>eclipse.platform.team</groupId>
+ <artifactId>org.eclipse.cvs</artifactId>
+ <version>1.3.100-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <id>source-feature</id>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.eclipse.cvs" />
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>

Back to the top