Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
7b1fc017
Commit
7b1fc017
authored
May 03, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix checkstyle violations
parent
b4d55a22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
SpringBootPluginExtension.java
...pringframework/boot/gradle/SpringBootPluginExtension.java
+17
-1
No files found.
spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/SpringBootPluginExtension.java
View file @
7b1fc017
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment