Skip to content

Commit

Permalink
Merge branch '3.2.x'
Browse files Browse the repository at this point in the history
Closes gh-40545
  • Loading branch information
wilkinsona committed Apr 26, 2024
2 parents 7fdb7ce + 023c104 commit bccf004
Showing 1 changed file with 4 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 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.
Expand Down Expand Up @@ -33,6 +33,8 @@
import org.gradle.api.publish.PublishingExtension;
import org.gradle.api.publish.maven.plugins.MavenPublishPlugin;

import org.springframework.util.FileSystemUtils;

/**
* A plugin to make a project's {@code deployment} publication available as a Maven
* repository. The repository can be consumed by depending upon the project using the
Expand Down Expand Up @@ -112,7 +114,7 @@ private CleanAction(File location) {

@Override
public void execute(Task task) {
task.getProject().delete(this.location);
FileSystemUtils.deleteRecursively(this.location);
}

}
Expand Down

0 comments on commit bccf004

Please sign in to comment.