-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtomcat-classloader-leak-test.setup
84 lines (84 loc) · 3.32 KB
/
tomcat-classloader-leak-test.setup
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
<?xml version="1.0" encoding="UTF-8"?>
<setup:Project
xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:git="http://www.eclipse.org/oomph/setup/git/1.0"
xmlns:jdt="http://www.eclipse.org/oomph/setup/jdt/1.0"
xmlns:maven="http://www.eclipse.org/oomph/setup/maven/1.0"
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
xsi:schemaLocation="http://www.eclipse.org/oomph/setup/git/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Git.ecore http://www.eclipse.org/oomph/setup/jdt/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/JDT.ecore http://www.eclipse.org/oomph/setup/maven/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Maven.ecore"
name="tomcat-classloader-leak-test"
label="tomcat-classloader-leak-test">
<stream name="develop"
label="">
<setupTask
xsi:type="setup:CompoundTask"
name="Additional Software">
<setupTask
xsi:type="setup.p2:P2Task"
label="buildhelper">
<requirement
name="org.sonatype.m2e.buildhelper.feature.feature.group"/>
<repository
url="http://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-buildhelper/0.15.0/N/0.15.0.201207090124/"/>
</setupTask>
<setupTask
xsi:type="setup.p2:P2Task"
label="m2e-apt">
<requirement
name="org.jboss.tools.maven.apt.feature.feature.group"/>
<repository
url="http://download.jboss.org/jbosstools/updates/m2e-extensions/m2e-apt/"/>
</setupTask>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
name="JREs">
<setupTask
xsi:type="jdt:JRETask"
version="JavaSE-1.8"
location="${jre.location-1.8}"/>
<setupTask
xsi:type="jdt:JRETask"
version="JavaSE-1.7"
location="${jre.location-1.7}"/>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
name="Projects">
<setupTask
xsi:type="git:GitCloneTask"
id="git.clone"
location="${workspace.location}/${scope.project.name}"
remoteURI="evosec/tomcat-classloader-leak-test"
pushURI="">
<annotation
source="http://www.eclipse.org/oomph/setup/InducedChoices">
<detail
key="inherit">
<value>github.remoteURIs</value>
</detail>
<detail
key="label">
<value>${scope.project.label} Github repository</value>
</detail>
<detail
key="target">
<value>remoteURI</value>
</detail>
</annotation>
<description>${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="maven:MavenImportTask"
projectNameTemplate="">
<sourceLocator
rootFolder="${workspace.location}/${scope.project.name}"/>
</setupTask>
</setupTask>
<description></description>
</stream>
<description> An integration test for your webapp that checks if it cleans up after itself. </description>
</setup:Project>