-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
130 lines (122 loc) · 4.42 KB
/
pom.xml
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.palladiosimulator.installationtest</groupId>
<artifactId>org.palladiosimulator.installationtest</artifactId>
<version>5.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Installation Test</name>
<properties>
<tycho.version>2.7.5</tycho.version>
<updatesite.eclipse.base>https://download.eclipse.org/releases/</updatesite.eclipse.base>
<updatesite.palladio>https://updatesite.palladio-simulator.com/palladio-build-updatesite/nightly/</updatesite.palladio>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<version>${tycho.version}</version>
<!-- the following configuration is used by all individual executions -->
<configuration>
<jvmArgs>
<args>-Xmx1024m</args>
</jvmArgs>
<environmentVariables>
<eclipse.p2.mirrors>true</eclipse.p2.mirrors>
</environmentVariables>
<dependencies>
<dependency>
<artifactId>org.eclipse.equinox.p2.transport.ecf</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.p2.touchpoint.natives</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.p2.touchpoint.eclipse</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.p2.artifact.repository</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.p2.director.app</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.ds</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.core.net</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.frameworkadmin</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.platform</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.equinox.simpleconfigurator</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.osgi.compatibility.state</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>javax.annotation</artifactId>
<type>eclipse-plugin</type>
</dependency>
</dependencies>
</configuration>
<executions>
<execution>
<id>2022-12</id>
<goals>
<goal>eclipse-run</goal>
</goals>
<phase>package</phase>
<configuration>
<repositories>
<repository>
<id>Eclipse</id>
<layout>p2</layout>
<url>${updatesite.eclipse.base}/2022-12/</url>
</repository>
</repositories>
<applicationsArgs>
<args>-application</args>
<args>org.eclipse.equinox.p2.director</args>
<args>-repository</args>
<args>${updatesite.palladio},${updatesite.eclipse.base}/2022-12/</args>
<args>-installIU</args>
<!-- information about the installation query: https://wiki.eclipse.org/Equinox/p2/Query_Language_for_p2 -->
<args>'Q:everything.select(y | everything.select(x | x.properties ~= filter("(org.eclipse.equinox.p2.type.category=true)") && x.id ~= /*palladio*/).collect(x | x.requirements).flatten().exists(r | y ~= r))'</args>
<args>-debug</args>
<args>-consoleLog</args>
<args>-destination</args>
<args>${project.build.directory}/2022-12</args>
</applicationsArgs>
<work>${project.build.directory}/2022-12_work</work>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>