Commit | Line | Data |
---|---|---|
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> | |
8336b412 AM |
7 | <groupId>org.eclipse.tracecompass</groupId> |
8 | <artifactId>org.eclipse.tracecompass</artifactId> | |
c7e8f6e3 | 9 | <version>1.0.0-SNAPSHOT</version> |
33112414 AM |
10 | </parent> |
11 | ||
8336b412 AM |
12 | <groupId>org.eclipse.tracecompass</groupId> |
13 | <artifactId>org.eclipse.tracecompass.target</artifactId> | |
14 | <name>Trace Compass Target Platform</name> | |
33112414 AM |
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> | |
7679e68a | 23 | <version>1.9.1</version> |
33112414 AM |
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> | |
8336b412 | 34 | <file>tracecompass-eStaging.target</file> |
33112414 | 35 | <type>target</type> |
8336b412 | 36 | <classifier>tracecompass-eStaging</classifier> |
33112414 | 37 | </artifact> |
33112414 AM |
38 | <!-- More targets could be added here --> |
39 | </artifacts> | |
40 | </configuration> | |
41 | </execution> | |
42 | </executions> | |
43 | </plugin> | |
44 | </plugins> | |
45 | </build> | |
46 | </project> |