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
a930835b
Commit
a930835b
authored
Apr 19, 2018
by
dreis2211
Committed by
Stephane Nicoll
Apr 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace <code> tags where possible
Closes gh-12922
parent
5792042d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
10 deletions
+8
-10
SecurityProperties.java
...ework/boot/autoconfigure/security/SecurityProperties.java
+2
-2
GenericBomAstTransformation.java
...mework/boot/cli/compiler/GenericBomAstTransformation.java
+1
-2
RestDocsTestExecutionListener.java
...autoconfigure/restdocs/RestDocsTestExecutionListener.java
+1
-1
RepackageMojo.java
...in/java/org/springframework/boot/maven/RepackageMojo.java
+4
-5
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/SecurityProperties.java
View file @
a930835b
/*
* Copyright 2012-201
7
the original author or authors.
* Copyright 2012-201
8
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -56,7 +56,7 @@ public class SecurityProperties implements SecurityPrerequisite {
/**
* Default order of Spring Security's Filter in the servlet container (i.e. amongst
* other filters registered with the container). There is no connection between this
* and the
<code>@Order</code>
on a WebSecurityConfigurer.
* and the
{@code @Order}
on a WebSecurityConfigurer.
*/
public
static
final
int
DEFAULT_FILTER_ORDER
=
FilterRegistrationBean
.
REQUEST_WRAPPER_FILTER_MAX_ORDER
-
100
;
...
...
spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/GenericBomAstTransformation.java
View file @
a930835b
...
...
@@ -67,8 +67,7 @@ public abstract class GenericBomAstTransformation
/**
* The bom to be added to dependency management in compact form:
* <code>"<groupId>:<artifactId>:<version>"</code> (like in a
* {@code @Grab}).
* {@code "<groupId>:<artifactId>:<version>"} (like in a {@code @Grab}).
* @return the maven co-ordinates of the BOM to add
*/
protected
abstract
String
getBomModule
();
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/restdocs/RestDocsTestExecutionListener.java
View file @
a930835b
...
...
@@ -26,7 +26,7 @@ import org.springframework.util.ClassUtils;
/**
* A {@link TestExecutionListener} for Spring REST Docs that removes the need for a
*
<code>@Rule</code>
when using JUnit or manual before and after test calls when using
*
{@code @Rule}
when using JUnit or manual before and after test calls when using
* TestNG.
*
* @author Andy Wilkinson
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/RepackageMojo.java
View file @
a930835b
...
...
@@ -144,9 +144,8 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
/**
* A list of the libraries that must be unpacked from fat jars in order to run.
* Specify each library as a <code><dependency></code> with a
* <code><groupId></code> and a <code><artifactId></code> and they will be
* unpacked at runtime.
* Specify each library as a {@code <dependency>} with a {@code <groupId>} and
* a {@code <artifactId>} and they will be unpacked at runtime.
* @since 1.1
*/
@Parameter
...
...
@@ -157,10 +156,10 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
* jar.
* <p>
* Currently, some tools do not accept this format so you may not always be able to
* use this technique. For example,
<code>jar -xf</code>
may silently fail to extract
* use this technique. For example,
{@code jar -xf}
may silently fail to extract
* a jar or war that has been made fully-executable. It is recommended that you only
* enable this option if you intend to execute it directly, rather than running it
* with
<code>java -jar</code>
or deploying it to a servlet container.
* with
{@code java -jar}
or deploying it to a servlet container.
* @since 1.3
*/
@Parameter
(
defaultValue
=
"false"
)
...
...
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