tmf: lttngControl: new enum TraceChannelOutputType
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.releng-site / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2011 Ericsson
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9
10 Contributors:
11 Ericsson - initial implementation
12 -->
13
14 <project xmlns="http://maven.apache.org/POM/4.0.0"
15 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
17 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <artifactId>linuxtools-lttng-parent</artifactId>
21 <groupId>org.eclipse.linuxtools.lttng</groupId>
22 <version>3.1.0-SNAPSHOT</version>
23 </parent>
24
25 <artifactId>org.eclipse.linuxtools.lttng.releng-site</artifactId>
26 <version>3.1.0-SNAPSHOT</version>
27 <name>Linux Tools LTTng Repository</name>
28 <packaging>eclipse-repository</packaging>
29
30 <build>
31 <plugins>
32 <plugin>
33 <artifactId>maven-antrun-plugin</artifactId>
34 <executions>
35 <execution>
36 <id>deploy</id>
37 <phase>install</phase>
38 <goals>
39 <goal>run</goal>
40 </goals>
41 <configuration>
42 <target>
43 <delete includeemptydirs="false">
44 <fileset
45 dir="${lttngPackageDestination}">
46 <include name="**" />
47 </fileset>
48 </delete>
49 <copy includeemptydirs="false"
50 todir="${lttngPackageDestination}">
51 <fileset dir="target/repository">
52 <include name="**" />
53 </fileset>
54 </copy>
55 </target>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 </plugins>
61 </build>
62
63 </project>
This page took 0.031335 seconds and 5 git commands to generate.