Stop using ConfigureUtil in BomExtension
While we're building with Gradle 6.9 at the moment and ConfigureUtil has only been deprecated in Gradle 7.1, it doesn't do any harm to stop using it now. Closes gh-26928
This commit is contained in:
		
							parent
							
								
									1c49ca6ff2
								
							
						
					
					
						commit
						0f52bbc560
					
				|  | @ -47,11 +47,11 @@ import org.gradle.api.Project; | ||||||
| import org.gradle.api.Task; | import org.gradle.api.Task; | ||||||
| import org.gradle.api.artifacts.Configuration; | import org.gradle.api.artifacts.Configuration; | ||||||
| import org.gradle.api.artifacts.dsl.DependencyHandler; | import org.gradle.api.artifacts.dsl.DependencyHandler; | ||||||
|  | import org.gradle.api.model.ObjectFactory; | ||||||
| import org.gradle.api.plugins.JavaPlatformPlugin; | import org.gradle.api.plugins.JavaPlatformPlugin; | ||||||
| import org.gradle.api.publish.maven.tasks.GenerateMavenPom; | import org.gradle.api.publish.maven.tasks.GenerateMavenPom; | ||||||
| import org.gradle.api.tasks.Sync; | import org.gradle.api.tasks.Sync; | ||||||
| import org.gradle.api.tasks.TaskExecutionException; | import org.gradle.api.tasks.TaskExecutionException; | ||||||
| import org.gradle.util.ConfigureUtil; |  | ||||||
| import org.w3c.dom.Document; | import org.w3c.dom.Document; | ||||||
| import org.w3c.dom.NodeList; | import org.w3c.dom.NodeList; | ||||||
| 
 | 
 | ||||||
|  | @ -77,7 +77,7 @@ public class BomExtension { | ||||||
| 
 | 
 | ||||||
| 	private final List<Library> libraries = new ArrayList<>(); | 	private final List<Library> libraries = new ArrayList<>(); | ||||||
| 
 | 
 | ||||||
| 	private final UpgradeHandler upgradeHandler = new UpgradeHandler(); | 	private final UpgradeHandler upgradeHandler; | ||||||
| 
 | 
 | ||||||
| 	private final DependencyHandler dependencyHandler; | 	private final DependencyHandler dependencyHandler; | ||||||
| 
 | 
 | ||||||
|  | @ -85,6 +85,7 @@ public class BomExtension { | ||||||
| 
 | 
 | ||||||
| 	public BomExtension(DependencyHandler dependencyHandler, Project project) { | 	public BomExtension(DependencyHandler dependencyHandler, Project project) { | ||||||
| 		this.dependencyHandler = dependencyHandler; | 		this.dependencyHandler = dependencyHandler; | ||||||
|  | 		this.upgradeHandler = project.getObjects().newInstance(UpgradeHandler.class); | ||||||
| 		this.project = project; | 		this.project = project; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  | @ -92,8 +93,8 @@ public class BomExtension { | ||||||
| 		return this.libraries; | 		return this.libraries; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public void upgrade(Closure<?> closure) { | 	public void upgrade(Action<UpgradeHandler> action) { | ||||||
| 		ConfigureUtil.configure(closure, this.upgradeHandler); | 		action.execute(this.upgradeHandler); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public Upgrade getUpgrade() { | 	public Upgrade getUpgrade() { | ||||||
|  | @ -101,9 +102,10 @@ public class BomExtension { | ||||||
| 				this.upgradeHandler.gitHub.repository, this.upgradeHandler.gitHub.issueLabels)); | 				this.upgradeHandler.gitHub.repository, this.upgradeHandler.gitHub.issueLabels)); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public void library(String name, String version, Closure<?> closure) { | 	public void library(String name, String version, Action<LibraryHandler> action) { | ||||||
| 		LibraryHandler libraryHandler = new LibraryHandler(); | 		ObjectFactory objects = this.project.getObjects(); | ||||||
| 		ConfigureUtil.configure(closure, libraryHandler); | 		LibraryHandler libraryHandler = objects.newInstance(LibraryHandler.class); | ||||||
|  | 		action.execute(libraryHandler); | ||||||
| 		addLibrary(new Library(name, DependencyVersion.parse(version), libraryHandler.groups, | 		addLibrary(new Library(name, DependencyVersion.parse(version), libraryHandler.groups, | ||||||
| 				libraryHandler.prohibitedVersions)); | 				libraryHandler.prohibitedVersions)); | ||||||
| 	} | 	} | ||||||
|  | @ -196,16 +198,16 @@ public class BomExtension { | ||||||
| 
 | 
 | ||||||
| 		private final List<ProhibitedVersion> prohibitedVersions = new ArrayList<>(); | 		private final List<ProhibitedVersion> prohibitedVersions = new ArrayList<>(); | ||||||
| 
 | 
 | ||||||
| 		public void group(String id, Closure<?> closure) { | 		public void group(String id, Action<GroupHandler> action) { | ||||||
| 			GroupHandler groupHandler = new GroupHandler(id); | 			GroupHandler groupHandler = new GroupHandler(id); | ||||||
| 			ConfigureUtil.configure(closure, groupHandler); | 			action.execute(groupHandler); | ||||||
| 			this.groups | 			this.groups | ||||||
| 					.add(new Group(groupHandler.id, groupHandler.modules, groupHandler.plugins, groupHandler.imports)); | 					.add(new Group(groupHandler.id, groupHandler.modules, groupHandler.plugins, groupHandler.imports)); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		public void prohibit(String range, Closure<?> closure) { | 		public void prohibit(String range, Action<ProhibitedVersionHandler> action) { | ||||||
| 			ProhibitedVersionHandler prohibitedVersionHandler = new ProhibitedVersionHandler(); | 			ProhibitedVersionHandler prohibitedVersionHandler = new ProhibitedVersionHandler(); | ||||||
| 			ConfigureUtil.configure(closure, prohibitedVersionHandler); | 			action.execute(prohibitedVersionHandler); | ||||||
| 			try { | 			try { | ||||||
| 				this.prohibitedVersions.add(new ProhibitedVersion(VersionRange.createFromVersionSpec(range), | 				this.prohibitedVersions.add(new ProhibitedVersion(VersionRange.createFromVersionSpec(range), | ||||||
| 						prohibitedVersionHandler.reason)); | 						prohibitedVersionHandler.reason)); | ||||||
|  | @ -258,7 +260,10 @@ public class BomExtension { | ||||||
| 					Object arg = ((Object[]) args)[0]; | 					Object arg = ((Object[]) args)[0]; | ||||||
| 					if (arg instanceof Closure) { | 					if (arg instanceof Closure) { | ||||||
| 						ExclusionHandler exclusionHandler = new ExclusionHandler(); | 						ExclusionHandler exclusionHandler = new ExclusionHandler(); | ||||||
| 						ConfigureUtil.configure((Closure<?>) arg, exclusionHandler); | 						Closure<?> closure = (Closure<?>) arg; | ||||||
|  | 						closure.setResolveStrategy(Closure.DELEGATE_FIRST); | ||||||
|  | 						closure.setDelegate(exclusionHandler); | ||||||
|  | 						closure.call(exclusionHandler); | ||||||
| 						return new Module(name, exclusionHandler.exclusions); | 						return new Module(name, exclusionHandler.exclusions); | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
|  | @ -289,8 +294,8 @@ public class BomExtension { | ||||||
| 			this.upgradePolicy = upgradePolicy; | 			this.upgradePolicy = upgradePolicy; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		public void gitHub(Closure<?> closure) { | 		public void gitHub(Action<GitHubHandler> action) { | ||||||
| 			ConfigureUtil.configure(closure, this.gitHub); | 			action.execute(this.gitHub); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue