Fix checkstyle violations
This commit is contained in:
parent
b4d55a2223
commit
7b1fc01733
|
|
@ -296,20 +296,36 @@ public class SpringBootPluginExtension {
|
||||||
*/
|
*/
|
||||||
public enum LayoutType {
|
public enum LayoutType {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executable JAR layout.
|
||||||
|
*/
|
||||||
JAR(new Layouts.Jar()),
|
JAR(new Layouts.Jar()),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executable WAR layout.
|
||||||
|
*/
|
||||||
WAR(new Layouts.War()),
|
WAR(new Layouts.War()),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executable expanded archive layout.
|
||||||
|
*/
|
||||||
ZIP(new Layouts.Expanded()),
|
ZIP(new Layouts.Expanded()),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executable expanded archive layout.
|
||||||
|
*/
|
||||||
DIR(new Layouts.Expanded()),
|
DIR(new Layouts.Expanded()),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module Layout.
|
* Module Layout.
|
||||||
* @deprecated as of 1.5 in favor of a custom {@link LayoutFactory}
|
* @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());
|
NONE(new Layouts.None());
|
||||||
|
|
||||||
Layout layout;
|
Layout layout;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue