Commit a930835b authored by dreis2211's avatar dreis2211 Committed by Stephane Nicoll

Replace <code> tags where possible

Closes gh-12922
parent 5792042d
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -56,7 +56,7 @@ public class SecurityProperties implements SecurityPrerequisite { ...@@ -56,7 +56,7 @@ public class SecurityProperties implements SecurityPrerequisite {
/** /**
* Default order of Spring Security's Filter in the servlet container (i.e. amongst * 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 * 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 public static final int DEFAULT_FILTER_ORDER = FilterRegistrationBean.REQUEST_WRAPPER_FILTER_MAX_ORDER
- 100; - 100;
......
...@@ -67,8 +67,7 @@ public abstract class GenericBomAstTransformation ...@@ -67,8 +67,7 @@ public abstract class GenericBomAstTransformation
/** /**
* The bom to be added to dependency management in compact form: * The bom to be added to dependency management in compact form:
* <code>"&lt;groupId&gt;:&lt;artifactId&gt;:&lt;version&gt;"</code> (like in a * {@code "<groupId>:<artifactId>:<version>"} (like in a {@code @Grab}).
* {@code @Grab}).
* @return the maven co-ordinates of the BOM to add * @return the maven co-ordinates of the BOM to add
*/ */
protected abstract String getBomModule(); protected abstract String getBomModule();
......
...@@ -26,7 +26,7 @@ import org.springframework.util.ClassUtils; ...@@ -26,7 +26,7 @@ import org.springframework.util.ClassUtils;
/** /**
* A {@link TestExecutionListener} for Spring REST Docs that removes the need for a * 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. * TestNG.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
......
...@@ -144,9 +144,8 @@ public class RepackageMojo extends AbstractDependencyFilterMojo { ...@@ -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. * A list of the libraries that must be unpacked from fat jars in order to run.
* Specify each library as a <code>&lt;dependency&gt;</code> with a * Specify each library as a {@code <dependency>} with a {@code <groupId>} and
* <code>&lt;groupId&gt;</code> and a <code>&lt;artifactId&gt;</code> and they will be * a {@code <artifactId>} and they will be unpacked at runtime.
* unpacked at runtime.
* @since 1.1 * @since 1.1
*/ */
@Parameter @Parameter
...@@ -157,10 +156,10 @@ public class RepackageMojo extends AbstractDependencyFilterMojo { ...@@ -157,10 +156,10 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
* jar. * jar.
* <p> * <p>
* Currently, some tools do not accept this format so you may not always be able to * 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 * 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 * 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 * @since 1.3
*/ */
@Parameter(defaultValue = "false") @Parameter(defaultValue = "false")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment