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-23 18:30:49 +0000
committerAlexandre Montplaisir2014-10-17 21:21:44 +0000
commit374cd3cd1bbe4f765b84b3032ddcfecc4e65f71c (patch)
tree1890cd585df93fd30d58e029c54ca5b39206f27b /org.eclipse.tracecompass.gdbtrace.help/pom.xml
parent9da723c0086ed8da5a155f1c93b0b579ee939261 (diff)
downloadorg.eclipse.tracecompass-374cd3cd1bbe4f765b84b3032ddcfecc4e65f71c.tar.gz
org.eclipse.tracecompass-374cd3cd1bbe4f765b84b3032ddcfecc4e65f71c.tar.xz
org.eclipse.tracecompass-374cd3cd1bbe4f765b84b3032ddcfecc4e65f71c.zip
gdbtrace: Move plugins to the Trace Compass namespace
Change-Id: I3407ed9c13052b2959c9446bedd4ceee52c10610 Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Diffstat (limited to 'org.eclipse.tracecompass.gdbtrace.help/pom.xml')
-rw-r--r--org.eclipse.tracecompass.gdbtrace.help/pom.xml86
1 files changed, 86 insertions, 0 deletions
diff --git a/org.eclipse.tracecompass.gdbtrace.help/pom.xml b/org.eclipse.tracecompass.gdbtrace.help/pom.xml
new file mode 100644
index 0000000000..3c6b9b8688
--- /dev/null
+++ b/org.eclipse.tracecompass.gdbtrace.help/pom.xml
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2013 Ericsson
+
+ 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.gdbtrace.help</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <name>Trace Compass GDB Tracepoint Analysis Help Plug-in</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>generate-documentation</id>
+ <phase>generate-sources</phase>
+ <configuration>
+ <echo>Generating GDB Tracepoint Analysis Help Files</echo>
+ <target>
+ <property name="compile_classpath" refid="maven.compile.classpath" />
+ <ant target="build" inheritRefs="true" antfile="build.xml" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>clean-documentation</id>
+ <phase>clean</phase>
+ <configuration>
+ <echo>Cleaning up generated GDB Tracepoint Analysis Help Files</echo>
+ <target>
+ <ant target="clean" antfile="build.xml" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-launcher</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+
+ <groupId>org.eclipse.tracecompass</groupId>
+</project>

Back to the top