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
This commit is contained in:
Andy Wilkinson 2015-10-12 10:33:33 +01:00
parent 9c14ed3502
commit 050a4fed17

View File

@ -36,7 +36,7 @@ import org.springframework.boot.gradle.run.RunPluginFeatures;
* @author Phillip Webb
* @author Dave Syer
*/
class SpringBootPlugin implements Plugin<Project> {
public class SpringBootPlugin implements Plugin<Project> {
@Override
public void apply(Project project) {