Merge branch '2.5.x'
Closes gh-28337
This commit is contained in:
commit
2d837a6eae
@ -0,0 +1,126 @@
|
||||
/*
|
||||
* Copyright 2012-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.build.classpath;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.TreeMap;
|
||||
import java.util.TreeSet;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
import org.gradle.api.DefaultTask;
|
||||
import org.gradle.api.GradleException;
|
||||
import org.gradle.api.Task;
|
||||
import org.gradle.api.artifacts.Configuration;
|
||||
import org.gradle.api.artifacts.ConfigurationContainer;
|
||||
import org.gradle.api.artifacts.Dependency;
|
||||
import org.gradle.api.artifacts.ExcludeRule;
|
||||
import org.gradle.api.artifacts.ModuleDependency;
|
||||
import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler;
|
||||
import org.gradle.api.tasks.Input;
|
||||
import org.gradle.api.tasks.TaskAction;
|
||||
|
||||
/**
|
||||
* A {@link Task} for checking the classpath for unnecessary exclusions.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
*/
|
||||
public class CheckClasspathForUnnecessaryExclusions extends DefaultTask {
|
||||
|
||||
private final Map<String, Set<String>> exclusionsByDependencyId = new TreeMap<>();
|
||||
|
||||
private final Map<String, Dependency> dependencyById = new HashMap<>();
|
||||
|
||||
private final Dependency platform;
|
||||
|
||||
private final DependencyHandler dependencyHandler;
|
||||
|
||||
private final ConfigurationContainer configurations;
|
||||
|
||||
@Inject
|
||||
public CheckClasspathForUnnecessaryExclusions(DependencyHandler dependencyHandler,
|
||||
ConfigurationContainer configurations) {
|
||||
this.dependencyHandler = getProject().getDependencies();
|
||||
this.configurations = getProject().getConfigurations();
|
||||
this.platform = this.dependencyHandler.create(this.dependencyHandler.platform(this.dependencyHandler
|
||||
.project(Collections.singletonMap("path", ":spring-boot-project:spring-boot-dependencies"))));
|
||||
getOutputs().upToDateWhen((task) -> true);
|
||||
}
|
||||
|
||||
public void setClasspath(Configuration classpath) {
|
||||
this.exclusionsByDependencyId.clear();
|
||||
this.dependencyById.clear();
|
||||
classpath.getAllDependencies().all((dependency) -> {
|
||||
if (dependency instanceof ModuleDependency) {
|
||||
String dependencyId = dependency.getGroup() + ":" + dependency.getName();
|
||||
Set<ExcludeRule> excludeRules = ((ModuleDependency) dependency).getExcludeRules();
|
||||
TreeSet<String> exclusions = excludeRules.stream()
|
||||
.map((rule) -> rule.getGroup() + ":" + rule.getModule())
|
||||
.collect(Collectors.toCollection(TreeSet::new));
|
||||
this.exclusionsByDependencyId.put(dependencyId, exclusions);
|
||||
if (!exclusions.isEmpty()) {
|
||||
this.dependencyById.put(dependencyId, getProject().getDependencies().create(dependencyId));
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Input
|
||||
Map<String, Set<String>> getExclusionsByDependencyId() {
|
||||
return this.exclusionsByDependencyId;
|
||||
}
|
||||
|
||||
@TaskAction
|
||||
public void checkForUnnecessaryExclusions() {
|
||||
Map<String, Set<String>> unnecessaryExclusions = new HashMap<>();
|
||||
for (Entry<String, Set<String>> entry : this.exclusionsByDependencyId.entrySet()) {
|
||||
String dependencyId = entry.getKey();
|
||||
Set<String> exclusions = entry.getValue();
|
||||
if (!exclusions.isEmpty()) {
|
||||
Dependency toCheck = this.dependencyById.get(dependencyId);
|
||||
List<String> dependencies = this.configurations.detachedConfiguration(toCheck, this.platform)
|
||||
.getIncoming().getArtifacts().getArtifacts().stream().map((artifact) -> {
|
||||
ModuleComponentIdentifier id = (ModuleComponentIdentifier) artifact.getId()
|
||||
.getComponentIdentifier();
|
||||
return id.getGroup() + ":" + id.getModule();
|
||||
}).collect(Collectors.toList());
|
||||
exclusions.removeAll(dependencies);
|
||||
if (!exclusions.isEmpty()) {
|
||||
unnecessaryExclusions.put(dependencyId, exclusions);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!unnecessaryExclusions.isEmpty()) {
|
||||
StringBuilder message = new StringBuilder("Unnecessary exclusions detected:");
|
||||
for (Entry<String, Set<String>> entry : unnecessaryExclusions.entrySet()) {
|
||||
message.append(String.format("%n %s", entry.getKey()));
|
||||
for (String exclusion : entry.getValue()) {
|
||||
message.append(String.format("%n %s", exclusion));
|
||||
}
|
||||
}
|
||||
throw new GradleException(message.toString());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -34,6 +34,7 @@ import org.springframework.boot.build.ConventionsPlugin;
|
||||
import org.springframework.boot.build.DeployedPlugin;
|
||||
import org.springframework.boot.build.classpath.CheckClasspathForConflicts;
|
||||
import org.springframework.boot.build.classpath.CheckClasspathForProhibitedDependencies;
|
||||
import org.springframework.boot.build.classpath.CheckClasspathForUnnecessaryExclusions;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
@ -62,6 +63,7 @@ public class StarterPlugin implements Plugin<Project> {
|
||||
(artifact) -> artifact.builtBy(starterMetadata));
|
||||
createClasspathConflictsCheck(runtimeClasspath, project);
|
||||
createProhibitedDependenciesCheck(runtimeClasspath, project);
|
||||
createUnnecessaryExclusionsCheck(runtimeClasspath, project);
|
||||
configureJarManifest(project);
|
||||
}
|
||||
|
||||
@ -81,6 +83,14 @@ public class StarterPlugin implements Plugin<Project> {
|
||||
project.getTasks().getByName(JavaBasePlugin.CHECK_TASK_NAME).dependsOn(checkClasspathForProhibitedDependencies);
|
||||
}
|
||||
|
||||
private void createUnnecessaryExclusionsCheck(Configuration classpath, Project project) {
|
||||
CheckClasspathForUnnecessaryExclusions checkClasspathForUnnecessaryExclusions = project.getTasks().create(
|
||||
"check" + StringUtils.capitalize(classpath.getName() + "ForUnnecessaryExclusions"),
|
||||
CheckClasspathForUnnecessaryExclusions.class);
|
||||
checkClasspathForUnnecessaryExclusions.setClasspath(classpath);
|
||||
project.getTasks().getByName(JavaBasePlugin.CHECK_TASK_NAME).dependsOn(checkClasspathForUnnecessaryExclusions);
|
||||
}
|
||||
|
||||
private void configureJarManifest(Project project) {
|
||||
project.getTasks().withType(Jar.class, (jar) -> project.afterEvaluate((evaluated) -> {
|
||||
jar.manifest((manifest) -> {
|
||||
|
@ -6,12 +6,8 @@ description = "Starter for JMS messaging using Apache Artemis"
|
||||
|
||||
dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
api("jakarta.jms:jakarta.jms-api")
|
||||
api("jakarta.json:jakarta.json-api")
|
||||
api("org.springframework:spring-jms")
|
||||
api("org.apache.activemq:artemis-jms-client") {
|
||||
exclude group: "commons-logging", module: "commons-logging"
|
||||
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
||||
exclude group: "org.apache.geronimo.specs", module: "geronimo-json_1.0_spec"
|
||||
}
|
||||
}
|
||||
|
@ -7,8 +7,6 @@ description = "Starter for using Cassandra distributed database and Spring Data
|
||||
dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
api("org.springframework:spring-tx")
|
||||
api("org.springframework.data:spring-data-cassandra") {
|
||||
exclude group: "org.slf4j", module: "jcl-over-slf4j"
|
||||
}
|
||||
api("org.springframework.data:spring-data-cassandra")
|
||||
api("io.projectreactor:reactor-core")
|
||||
}
|
||||
|
@ -7,7 +7,5 @@ description = "Starter for using Cassandra distributed database and Spring Data
|
||||
dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
api("org.springframework:spring-tx")
|
||||
api("org.springframework.data:spring-data-cassandra") {
|
||||
exclude group: "org.slf4j", module: "jcl-over-slf4j"
|
||||
}
|
||||
api("org.springframework.data:spring-data-cassandra")
|
||||
}
|
||||
|
@ -8,7 +8,5 @@ dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
api("io.projectreactor:reactor-core")
|
||||
api("io.reactivex:rxjava-reactive-streams")
|
||||
api("org.springframework.data:spring-data-couchbase") {
|
||||
exclude group: "com.couchbase.client", module: "encryption"
|
||||
}
|
||||
api("org.springframework.data:spring-data-couchbase")
|
||||
}
|
||||
|
@ -6,7 +6,5 @@ description = "Starter for using Couchbase document-oriented database and Spring
|
||||
|
||||
dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||||
api("org.springframework.data:spring-data-couchbase") {
|
||||
exclude group: "com.couchbase.client", module: "encryption"
|
||||
}
|
||||
api("org.springframework.data:spring-data-couchbase")
|
||||
}
|
||||
|
@ -15,8 +15,6 @@ dependencies {
|
||||
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||
exclude group: "org.jboss.spec.javax.transaction", module: "jboss-transaction-api_1.2_spec"
|
||||
}
|
||||
api("org.springframework.data:spring-data-jpa") {
|
||||
exclude group: "org.aspectj", module: "aspectjrt"
|
||||
}
|
||||
api("org.springframework.data:spring-data-jpa")
|
||||
api("org.springframework:spring-aspects")
|
||||
}
|
||||
|
@ -18,7 +18,5 @@ dependencies {
|
||||
api("org.skyscreamer:jsonassert")
|
||||
api("org.springframework:spring-core")
|
||||
api("org.springframework:spring-test")
|
||||
api("org.xmlunit:xmlunit-core") {
|
||||
exclude group: "javax.xml.bind", module: "jaxb-api"
|
||||
}
|
||||
api("org.xmlunit:xmlunit-core")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user