Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Montplaisir2014-09-24 18:00:03 +0000
committerAlexandre Montplaisir2014-10-17 21:23:18 +0000
commitc77a695a8be1ae8afbe33ecc69d6d3518a2a552b (patch)
treeb5560068f06bcc5cade88ec6cd861d9a26ee1ab6 /org.eclipse.tracecompass.tmf.ui/pom.xml
parentfbdee51bae97d04fb50bec47da228e74672154ca (diff)
downloadorg.eclipse.tracecompass-c77a695a8be1ae8afbe33ecc69d6d3518a2a552b.tar.gz
org.eclipse.tracecompass-c77a695a8be1ae8afbe33ecc69d6d3518a2a552b.tar.xz
org.eclipse.tracecompass-c77a695a8be1ae8afbe33ecc69d6d3518a2a552b.zip
tmf: Move plugins to the Trace Compass namespace
We'll keep the name "TMF" for now to refer to the core framework. Change-Id: Ifb221f2c8239feb0eb0e2e308cc24e094c6501e1 Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Diffstat (limited to 'org.eclipse.tracecompass.tmf.ui/pom.xml')
-rw-r--r--org.eclipse.tracecompass.tmf.ui/pom.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/org.eclipse.tracecompass.tmf.ui/pom.xml b/org.eclipse.tracecompass.tmf.ui/pom.xml
new file mode 100644
index 0000000000..683faabdaf
--- /dev/null
+++ b/org.eclipse.tracecompass.tmf.ui/pom.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Red Hat, Inc.
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+<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>org.eclipse.tracecompass</artifactId>
+ <groupId>org.eclipse.tracecompass</groupId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.tracecompass.tmf.ui</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <name>Trace Compass TMF UI Plug-in</name>
+
+ <build>
+ <!-- workaround for https://issues.sonatype.org/browse/TYCHO-168 -->
+ <resources>
+ <resource>
+ <directory>src</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+ <groupId>org.eclipse.tracecompass</groupId>
+</project>

Back to the top