Create and populate new "releng" sub-directory
[deliverable/tracecompass.git] / releng / org.eclipse.tracecompass.target / pom.xml
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 <artifactId>org.eclipse.tracecompass.releng-parent</artifactId>
8 <groupId>org.eclipse.tracecompass</groupId>
9 <version>1.0.0-SNAPSHOT</version>
10 </parent>
11
12 <groupId>org.eclipse.tracecompass</groupId>
13 <artifactId>org.eclipse.tracecompass.target</artifactId>
14 <name>Trace Compass 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.1</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>tracecompass-eStaging.target</file>
35 <type>target</type>
36 <classifier>tracecompass-eStaging</classifier>
37 </artifact>
38 <!-- More targets could be added here -->
39 </artifacts>
40 </configuration>
41 </execution>
42 </executions>
43 </plugin>
44 </plugins>
45 </build>
46 </project>
This page took 0.047942 seconds and 5 git commands to generate.