71d487d4fcbbdedaa07b24ef51a4becc1b62b0a5
[deliverable/tracecompass.git] / 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 <groupId>org.eclipse.tracecompass</groupId>
8 <artifactId>org.eclipse.tracecompass</artifactId>
9 <version>0.1.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</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 <artifact>
39 <file>tracecompass-e4.4.target</file>
40 <type>target</type>
41 <classifier>tracecompass-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.036887 seconds and 4 git commands to generate.