forked from pmd/pmd-eclipse-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pmd-eclipse-plugin.setup
132 lines (132 loc) · 4.99 KB
/
pmd-eclipse-plugin.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
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
131
132
<?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"
xmlns:setup.targlets="http://www.eclipse.org/oomph/setup/targlets/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 http://www.eclipse.org/oomph/setup/targlets/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/SetupTarglets.ecore"
name="pmd-eclipse-plugin"
label="PMD Eclipse Plugin">
<setupTask
xsi:type="jdt:JRETask"
version="JavaSE-1.8"
location="${jre.location-1.8}">
<description>Define the JRE needed to compile and run the Java projects of ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="setup:EclipseIniTask"
option="-Xmx"
value="1024m"
vm="true">
<description>Set the heap space needed to work with the projects of ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="setup:VariableTask"
name="eclipse.target.platform"
defaultValue="Neon"
storageURI="scope://Workspace"/>
<setupTask
xsi:type="setup.p2:P2Task"
label="Tycho">
<requirement
name="org.sonatype.tycho.m2e.feature.feature.group"/>
<repository
url="https://repo.maven.apache.org/maven2/.m2e/connectors/m2eclipse-tycho/0.9.0/N/0.9.0.201609252021/"/>
<description>Install the tools needed in the IDE to work with the source code for ${scope.project.label}</description>
</setupTask>
<setupTask
xsi:type="git:GitCloneTask"
id="git.clone"
location="${workspace.location}/${scope.project.name}"
remoteURI="pmd/pmd-eclipse-plugin">
<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="setup.targlets:TargletTask">
<targlet
name="${scope.project.label}"
activeRepositoryList="${eclipse.target.platform}">
<requirement
name="org.eclipse.sdk.feature.group"/>
<requirement
name="*"/>
<sourceLocator
rootFolder="${git.clone.location}"
locateNestedProjects="true"/>
<repositoryList
name="Oxygen">
<repository
url="http://download.eclipse.org/releases/oxygen"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
<repositoryList
name="Neon">
<repository
url="http://download.eclipse.org/releases/neon"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
<repositoryList
name="Mars">
<repository
url="http://download.eclipse.org/releases/mars"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
<repositoryList
name="Luna">
<repository
url="http://download.eclipse.org/releases/luna"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
<repositoryList
name="Kepler">
<repository
url="http://download.eclipse.org/releases/kepler"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
<repositoryList
name="Juno">
<repository
url="http://download.eclipse.org/releases/juno"/>
<repository
url="http://download.eclipse.org/cbi/updates/license"/>
</repositoryList>
</targlet>
</setupTask>
<setupTask
xsi:type="maven:MavenImportTask">
<sourceLocator
rootFolder="${git.clone.location}"/>
<description></description>
</setupTask>
<stream name="master"
label="master"/>
<logicalProjectContainer
xsi:type="setup:ProjectCatalog"
href="index:/org.eclipse.setup#//@projectCatalogs[name='com.github']"/>
<description>PMD for Eclipse Plugin</description>
</setup:Project>