Skip to content

Commit e0b9ec2

Browse files
committed
Fix Eclipse WTP facet version
Add `WarConventions` to fix the facet version used by Eclipse WTP
1 parent 25e0954 commit e0b9ec2

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

buildSrc/src/main/java/org/springframework/boot/build/ConventionsPlugin.java

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public void apply(Project project) {
4747
new MavenPublishingConventions().apply(project);
4848
new AsciidoctorConventions().apply(project);
4949
new KotlinConventions().apply(project);
50+
new WarConventions().apply(project);
5051
}
5152

5253
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* Copyright 2023 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.boot.build;
18+
19+
import java.util.ArrayList;
20+
import java.util.List;
21+
22+
import org.gradle.api.JavaVersion;
23+
import org.gradle.api.Project;
24+
import org.gradle.api.internal.IConventionAware;
25+
import org.gradle.api.plugins.JavaPluginExtension;
26+
import org.gradle.plugins.ide.eclipse.EclipseWtpPlugin;
27+
import org.gradle.plugins.ide.eclipse.model.EclipseModel;
28+
import org.gradle.plugins.ide.eclipse.model.Facet;
29+
30+
/**
31+
* Conventions that are applied in the presence of the {WarPlugin}. When the plugin is
32+
* applied:
33+
* <ul>
34+
* <li>Update Eclipse WTP Plugin facets to use Servlet 5.0</li>
35+
* </ul>
36+
*
37+
* @author Phillip Webb
38+
*/
39+
public class WarConventions {
40+
41+
void apply(Project project) {
42+
project.getPlugins().withType(EclipseWtpPlugin.class, (wtp) -> {
43+
project.getTasks().getByName(EclipseWtpPlugin.ECLIPSE_WTP_FACET_TASK_NAME).doFirst((task) -> {
44+
EclipseModel eclipseModel = project.getExtensions().getByType(EclipseModel.class);
45+
((IConventionAware) eclipseModel.getWtp().getFacet()).getConventionMapping()
46+
.map("facets", () -> getFacets(project));
47+
});
48+
});
49+
}
50+
51+
private List<Facet> getFacets(Project project) {
52+
JavaVersion javaVersion = project.getExtensions().getByType(JavaPluginExtension.class).getSourceCompatibility();
53+
List<Facet> facets = new ArrayList<>();
54+
facets.add(new Facet(Facet.FacetType.fixed, "jst.web", null));
55+
facets.add(new Facet(Facet.FacetType.installed, "jst.web", "5.0"));
56+
facets.add(new Facet(Facet.FacetType.installed, "jst.java", javaVersion.toString()));
57+
return facets;
58+
}
59+
60+
}

0 commit comments

Comments
 (0)