Skip to content

Commit 050a4fe

Browse files
committed
Restore compatibility with Gradle 2.0
Gradle 2.0, and only 2.0, requires a Plugin implementation to be public. The changes made in gh-4113 (9c14ed3) made the class package-private. Closes gh-4139
1 parent 9c14ed3 commit 050a4fe

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle

1 file changed

+1
-1
lines changed

spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/SpringBootPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @author Phillip Webb
3737
* @author Dave Syer
3838
*/
39-
class SpringBootPlugin implements Plugin<Project> {
39+
public class SpringBootPlugin implements Plugin<Project> {
4040

4141
@Override
4242
public void apply(Project project) {

0 commit comments

Comments
 (0)