File: pom.xml

package info (click to toggle)
eclipse-tracecompass 6.2.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 77,440 kB
  • sloc: java: 316,465; xml: 99,829; perl: 400; sh: 353; makefile: 43; javascript: 29; python: 18
file content (108 lines) | stat: -rw-r--r-- 4,125 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<!--
   Copyright (c) 2014, 2020 Ericsson

   All rights reserved. This program and the accompanying materials
   are made available under the terms of the Eclipse Public License 2.0
   which accompanies this distribution, and is available at
   https://www.eclipse.org/legal/epl-2.0/

   SPDX-License-Identifier: EPL-2.0

   Contributors:
       Ericsson - initial implementation
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>

    <parent>
      <artifactId>org.eclipse.tracecompass.releng-parent</artifactId>
      <groupId>org.eclipse.tracecompass</groupId>
      <version>6.2.0-SNAPSHOT</version>
    </parent>

    <artifactId>org.eclipse.tracecompass.target</artifactId>
    <name>Trace Compass Target Platform</name>
    <packaging>pom</packaging>

    <build>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>build-helper-maven-plugin</artifactId>
          <version>3.0.0</version>
          <executions>
            <execution>
              <id>attach-artifacts</id>
              <phase>package</phase>
              <goals>
                <goal>attach-artifact</goal>
              </goals>
              <configuration>
                <artifacts>
                  <artifact>
                    <file>tracecompass-e4.8.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.8</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.9.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.9</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.10.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.10</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.11.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.11</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.12.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.12</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.13.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.13</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.14.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.14</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.15.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.15</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.16.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.16</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-e4.17.target</file>
                    <type>target</type>
                    <classifier>tracecompass-e4.17</classifier>
                  </artifact>
                  <artifact>
                    <file>tracecompass-eStaging.target</file>
                    <type>target</type>
                    <classifier>tracecompass-eStaging</classifier>
                  </artifact>
                  <!-- More targets could be added here -->
                </artifacts>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </build>
</project>