Browse Source

Fix checkstyle violations

pull/8866/merge
Stephane Nicoll 9 years ago
parent
commit
7b1fc01733
  1. 18
      spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/SpringBootPluginExtension.java

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

@ -296,20 +296,36 @@ public class SpringBootPluginExtension { @@ -296,20 +296,36 @@ public class SpringBootPluginExtension {
*/
public enum LayoutType {
/**
* Executable JAR layout.
*/
JAR(new Layouts.Jar()),
/**
* Executable WAR layout.
*/
WAR(new Layouts.War()),
/**
* Executable expanded archive layout.
*/
ZIP(new Layouts.Expanded()),
/**
* Executable expanded archive layout.
*/
DIR(new Layouts.Expanded()),
/**
* Module Layout.
* @deprecated as of 1.5 in favor of a custom {@link LayoutFactory}
*/
@Deprecated MODULE(new Layouts.Module()),
@Deprecated
MODULE(new Layouts.Module()),
/**
* No layout.
*/
NONE(new Layouts.None());
Layout layout;

Loading…
Cancel
Save