Update README to reflect new commands
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.target / pom.xml
CommitLineData
33112414
AM
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.eclipse.linuxtools.lttng</groupId>
8 <artifactId>linuxtools-lttng-parent</artifactId>
9 <version>3.2.0-SNAPSHOT</version>
10 </parent>
11
12 <groupId>org.eclipse.linuxtools.lttng</groupId>
13 <artifactId>org.eclipse.linuxtools.lttng.target</artifactId>
14 <name>Linux Tools LTTng Target Platform</name>
15 <version>1.0.0</version>
16 <packaging>pom</packaging>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.codehaus.mojo</groupId>
22 <artifactId>build-helper-maven-plugin</artifactId>
23 <version>1.9</version>
24 <executions>
25 <execution>
26 <id>attach-artifacts</id>
27 <phase>package</phase>
28 <goals>
29 <goal>attach-artifact</goal>
30 </goals>
31 <configuration>
32 <artifacts>
33 <artifact>
34 <file>lttng-eStaging.target</file>
35 <type>target</type>
36 <classifier>lttng-eStaging</classifier>
37 </artifact>
38 <artifact>
39 <file>lttng-e4.4.target</file>
40 <type>target</type>
41 <classifier>lttng-e4.4</classifier>
42 </artifact>
43 <!-- More targets could be added here -->
44 </artifacts>
45 </configuration>
46 </execution>
47 </executions>
48 </plugin>
49 </plugins>
50 </build>
51</project>
This page took 0.027356 seconds and 5 git commands to generate.