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> | |
2e225298 | 7 | <artifactId>org.eclipse.tracecompass.releng-parent</artifactId> |
8336b412 | 8 | <groupId>org.eclipse.tracecompass</groupId> |
38a9b03f | 9 | <version>2.0.0-SNAPSHOT</version> |
33112414 AM |
10 | </parent> |
11 | ||
8336b412 AM |
12 | <artifactId>org.eclipse.tracecompass.target</artifactId> |
13 | <name>Trace Compass Target Platform</name> | |
38a9b03f | 14 | <version>2.0.0</version> |
33112414 AM |
15 | <packaging>pom</packaging> |
16 | ||
17 | <build> | |
18 | <plugins> | |
19 | <plugin> | |
20 | <groupId>org.codehaus.mojo</groupId> | |
21 | <artifactId>build-helper-maven-plugin</artifactId> | |
b68eec3c | 22 | <version>1.10</version> |
33112414 AM |
23 | <executions> |
24 | <execution> | |
25 | <id>attach-artifacts</id> | |
26 | <phase>package</phase> | |
27 | <goals> | |
28 | <goal>attach-artifact</goal> | |
29 | </goals> | |
30 | <configuration> | |
31 | <artifacts> | |
e50763b5 MAL |
32 | <artifact> |
33 | <file>tracecompass-e4.5.target</file> | |
34 | <type>target</type> | |
35 | <classifier>tracecompass-e4.5</classifier> | |
36 | </artifact> | |
085af484 MAL |
37 | <artifact> |
38 | <file>tracecompass-e4.6.target</file> | |
39 | <type>target</type> | |
40 | <classifier>tracecompass-e4.6</classifier> | |
41 | </artifact> | |
33112414 | 42 | <artifact> |
8336b412 | 43 | <file>tracecompass-eStaging.target</file> |
33112414 | 44 | <type>target</type> |
8336b412 | 45 | <classifier>tracecompass-eStaging</classifier> |
33112414 | 46 | </artifact> |
33112414 AM |
47 | <!-- More targets could be added here --> |
48 | </artifacts> | |
49 | </configuration> | |
50 | </execution> | |
51 | </executions> | |
52 | </plugin> | |
53 | </plugins> | |
54 | </build> | |
55 | </project> |