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
pull/4212/head
Andy Wilkinson 9 years ago
parent 9c14ed3502
commit 050a4fed17

@ -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) {

Loading…
Cancel
Save