-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathm2e-code-quality.setup
More file actions
115 lines (115 loc) · 4.66 KB
/
m2e-code-quality.setup
File metadata and controls
115 lines (115 loc) · 4.66 KB
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
<?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.targlets="http://www.eclipse.org/oomph/setup/targlets/1.0"
xsi:schemaLocation="http://www.eclipse.org/oomph/setup/git/1.0 https://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Git.ecore http://www.eclipse.org/oomph/setup/jdt/1.0 https://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/JDT.ecore http://www.eclipse.org/oomph/setup/maven/1.0 https://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Maven.ecore http://www.eclipse.org/oomph/setup/targlets/1.0 https://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/SetupTarglets.ecore"
name="m2e-code-quality"
label="m2e-code-quality">
<setupTask
xsi:type="jdt:JRETask"
version="JavaSE-17"
location="${jre.location-17}"
name="java17">
<description>Define the JDK 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:EclipseIniTask"
option="-Doomph.redirection.m2e-code-quality"
value="https://raw.githubusercontent.com/m2e-code-quality/m2e-code-quality/master/->${git.clone.location|uri}/"/>
<setupTask
xsi:type="setup:VariableTask"
name="eclipse.target.platform"
defaultValue="2022-09"
storageURI="scope://Workspace"/>
<setupTask
xsi:type="git:GitCloneTask"
id="git.clone"
location="${workspace.location}/${scope.project.name}"
remoteURI="m2e-code-quality/m2e-code-quality">
<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="org.eclipse.jdt.feature.group"/>
<requirement
name="org.eclipse.m2e.feature.feature.group"/>
<requirement
name="org.eclipse.m2e.logback.feature.feature.group"/>
<requirement
name="org.eclipse.m2e.sdk.feature.feature.group"/>
<requirement
name="org.apache.commons.lang"/>
<requirement
name="net.sf.eclipsecs.feature.group"/>
<requirement
name="net.sourceforge.pmd.eclipse.feature.group"/>
<requirement
name="edu.umd.cs.findbugs.plugin.eclipse.feature.group"
optional="true"/>
<requirement
name="com.github.spotbugs.plugin.eclipse.feature.group"/>
<sourceLocator
rootFolder="${git.clone.location}"
locateNestedProjects="true"/>
<repositoryList
name="2022-09">
<repository
url="https://download.eclipse.org/releases/2022-09/"/>
<repository
url="https://checkstyle.org/eclipse-cs-update-site/"/>
<repository
url="https://pmd.github.io/pmd-eclipse-plugin-p2-site/"/>
<repository
url="https://findbugs.cs.umd.edu/eclipse/"/>
<repository
url="https://spotbugs.github.io/eclipse/"/>
</repositoryList>
</targlet>
</setupTask>
<setupTask
xsi:type="maven:MavenImportTask">
<sourceLocator
rootFolder="${git.clone.location}"
locateNestedProjects="true"/>
</setupTask>
<stream name="develop"
label="Develop"/>
<logicalProjectContainer
xsi:type="setup:ProjectCatalog"
href="index:/org.eclipse.setup#//@projectCatalogs[name='com.github']"/>
<description>A collection of Eclipse plugins for M2Eclipse that carry configuration from the Checkstyle, FindBugs, Spotbugs and PMD Maven plugins to their corresponding Eclipse plugins.</description>
</setup:Project>