Skip to content

Commit 36ddb33

Browse files
committed
Make sure all links are clickable, closes #2099.
1 parent 8e6f6d2 commit 36ddb33

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

plugin-maven/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ any other maven phase (i.e. compile) then it can be configured as below;
232232

233233
```xml
234234
<googleJavaFormat>
235-
<version>1.8</version> <!-- optional, 1.8 is the minimum supported version for Java 11-->
235+
<version>1.8</version> <!-- optional, 1.8 is the minimum supported version for Java 11 -->
236236
<style>GOOGLE</style> <!-- or AOSP (optional) -->
237237
<reflowLongStrings>true</reflowLongStrings> <!-- optional -->
238238
<formatJavadoc>false</formatJavadoc> <!-- optional -->
@@ -660,9 +660,9 @@ All configuration settings are optional, they are described in detail [here](htt
660660

661661
<lineSeparator>${line.separator}</lineSeparator> <!-- line separator to use -->
662662

663-
<expandEmptyElements>true</expandEmptyElements> <!-- Should empty elements be expanded-->
663+
<expandEmptyElements>true</expandEmptyElements> <!-- Should empty elements be expanded -->
664664

665-
<spaceBeforeCloseEmptyElement>false</spaceBeforeCloseEmptyElement> <!-- Should a space be added inside self-closing elements-->
665+
<spaceBeforeCloseEmptyElement>false</spaceBeforeCloseEmptyElement> <!-- Should a space be added inside self-closing elements -->
666666

667667
<keepBlankLines>true</keepBlankLines> <!-- Keep empty lines -->
668668

@@ -676,15 +676,15 @@ All configuration settings are optional, they are described in detail [here](htt
676676

677677
<indentAttribute></indentAttribute> <!-- Should the xml attributes be indented -->
678678

679-
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder> <!-- Sort order of elements: https://github.com/Ekryd/sortpom/wiki/PredefinedSortOrderProfiles-->
679+
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder> <!-- Sort order of elements: https://github.com/Ekryd/sortpom/wiki/PredefinedSortOrderProfiles -->
680680

681681
<sortOrderFile></sortOrderFile> <!-- Custom sort order of elements: https://raw.githubusercontent.com/Ekryd/sortpom/master/sorter/src/main/resources/custom_1.xml -->
682682

683-
<sortDependencies></sortDependencies> <!-- Sort dependencies: https://github.com/Ekryd/sortpom/wiki/SortDependencies-->
683+
<sortDependencies></sortDependencies> <!-- Sort dependencies: https://github.com/Ekryd/sortpom/wiki/SortDependencies -->
684684

685-
<sortDependencyManagement></sortDependencyManagement> <!-- Sort dependency management: https://github.com/Ekryd/sortpom/wiki/SortDependencies-->
685+
<sortDependencyManagement></sortDependencyManagement> <!-- Sort dependency management: https://github.com/Ekryd/sortpom/wiki/SortDependencies -->
686686

687-
<sortDependencyExclusions></sortDependencyExclusions> <!-- Sort dependency exclusions: https://github.com/Ekryd/sortpom/wiki/SortDependencies-->
687+
<sortDependencyExclusions></sortDependencyExclusions> <!-- Sort dependency exclusions: https://github.com/Ekryd/sortpom/wiki/SortDependencies -->
688688

689689
<sortPlugins></sortPlugins> <!-- Sort plugins: https://github.com/Ekryd/sortpom/wiki/SortPlugins -->
690690

@@ -1505,15 +1505,15 @@ The following languages are currently recognized:
15051505

15061506
<jsr223> <!-- specify replacements using JSR223 scripting -->
15071507
<name>Greetings to Mars</name>
1508-
<dependency>org.codehaus.groovy:groovy-jsr223:3.0.9</dependency> <!-- optional, maven dependency, containing the jsr223 compatible scripting engine-->
1508+
<dependency>org.codehaus.groovy:groovy-jsr223:3.0.9</dependency> <!-- optional, maven dependency, containing the jsr223 compatible scripting engine -->
15091509
<engine>groovy</engine> <!-- nashorn is provided by JDK 8-14, other engines can be loaded from the given dependency -->
15101510
<script>source.replace('World','Mars');</script> <!-- the source variable contains the unformatted code, the returned value of the script is the formatted code -->
15111511
</jsr223>
15121512

15131513
<nativeCmd> <!-- run a native binary -->
15141514
<name>Greetings to Mars from sed</name>
15151515
<pathToExe>/usr/bin/sed</pathToExe> <!-- path to the binary, unformatted code is send via StdIn, formatted code is expected on StdOut -->
1516-
<arguments> <!-- optional, list with arguments for the binary call-->
1516+
<arguments> <!-- optional, list with arguments for the binary call -->
15171517
<argument>s/World/Mars/g</argument>
15181518
</arguments>
15191519
</nativeCmd>

0 commit comments

Comments
 (0)