You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+2
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ You might be looking for:
7
7
8
8
### Version 1.11.0-SNAPSHOT - TBD (javadoc [lib](https://diffplug.github.io/spotless/javadoc/spotless-lib/snapshot/)[lib-extra](https://diffplug.github.io/spotless/javadoc/spotless-lib-extra/snapshot/), [snapshot repo](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/spotless/))
9
9
10
+
* Added generic format support for maven-plugin ([#209](https://github.com/diffplug/spotless/pull/209))
11
+
10
12
### Version 1.10.0 - February 15th 2018 (javadoc [lib](https://diffplug.github.io/spotless/javadoc/spotless-lib/1.10.0/)[lib-extra](https://diffplug.github.io/spotless/javadoc/spotless-lib-extra/1.10.0/), artifact [lib]([jcenter](https://bintray.com/diffplug/opensource/spotless-lib), [lib-extra]([jcenter](https://bintray.com/diffplug/opensource/spotless-lib-extra)))
11
13
12
14
* LicenseHeaderStep now supports customizing the year range separator in copyright notices. ([#199](https://github.com/diffplug/spotless/pull/199))
Copy file name to clipboardExpand all lines: plugin-maven/README.md
+54
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,60 @@ By default, all files matching `src/main/java/**/*.java` and `src/test/java/**/*
115
115
</configuration>
116
116
```
117
117
118
+
<aname="format"></a>
119
+
120
+
## Applying to custom sources
121
+
122
+
By default, no Ant-Style include patterns are defined. Each element under `<format>` is a step, and they will be applied in the order specified. Every step is optional, and they will be applied in the order specified.
123
+
124
+
```xml
125
+
<configuration>
126
+
<format>
127
+
<includes>
128
+
<!-- include all property files in "resource" folders under "src" -->
0 commit comments