forked from jbosstools/jbosstools-integration-stack-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
108 lines (102 loc) · 3.3 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
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>parent</artifactId>
<version>4.2.3.Final-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>integration-stack-tests</artifactId>
<version>4.2.0-SNAPSHOT</version>
<name>integration-stack-tests.all</name>
<packaging>pom</packaging>
<properties>
<tycho.scmUrl>scm:git:https://github.com/jbosstools/jbosstools-integration-stack-tests.git</tycho.scmUrl>
<jbtis.tp.version>4.2.2.Final</jbtis.tp.version>
<jbtis.site>http://download.jboss.org/jbosstools/updates/development/luna/integration-stack/aggregate/4.2.1.Final/</jbtis.site>
<jbtis-ea.site>http://download.jboss.org/jbosstools/updates/development/luna/integration-stack/aggregate/4.2.1.Final/earlyaccess</jbtis-ea.site>
<reddeer.site>http://download.jboss.org/jbosstools/updates/stable/luna/core/reddeer/0.7.0</reddeer.site>
<orbit.site>http://download.eclipse.org/tools/orbit/downloads/drops/R20130517111416/repository</orbit.site>
<swtbot.site>http://download.eclipse.org/technology/swtbot/releases/latest</swtbot.site>
<skipRequirements>${skipTests}</skipRequirements>
</properties>
<modules>
<module>plugins</module>
<module>tests</module>
<module>site</module>
</modules>
<repositories>
<!-- JBTIS Repository -->
<repository>
<id>jbtis</id>
<url>${jbtis.site}</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<!-- JBTIS Repository (early access) -->
<repository>
<id>jbtis-ea</id>
<url>${jbtis-ea.site}</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<!-- Red Deer Update Site -->
<repository>
<id>reddeer-site</id>
<url>${reddeer.site}</url>
<layout>p2</layout>
</repository>
<!-- SWTBot Update Site -->
<repository>
<id>swtbot-site</id>
<url>${swtbot.site}</url>
<layout>p2</layout>
</repository>
<!-- Eclipse Orbit Update Site -->
<repository>
<id>orbit-site</id>
<url>${orbit.site}</url>
<layout>p2</layout>
</repository>
</repositories>
<build>
<plugins>
<!-- JBTIS Target Platform -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tychoVersion}</version>
<configuration>
<target>
<artifact>
<groupId>org.jboss.tools.integration-stack</groupId>
<artifactId>target-platform</artifactId>
<version>${jbtis.tp.version}</version>
<type>target</type>
<classifier>base</classifier>
</artifact>
<artifact>
<groupId>org.jboss.tools.integration-stack</groupId>
<artifactId>target-platform</artifactId>
<version>${jbtis.tp.version}</version>
<type>target</type>
<classifier>base-ea</classifier>
</artifact>
</target>
</configuration>
</plugin>
</plugins>
</build>
</project>