├── .github ├── ISSUE_TEMPLATE │ ├── bug-report-about-aspects-of-the-formatting.md │ └── bug-report-in-the-maven-plugin.md └── workflows │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── catalog-info.yaml ├── pom.xml └── src ├── main └── java │ └── com │ └── spotify │ └── fmt │ ├── AbstractFMT.java │ ├── Check.java │ ├── FMT.java │ ├── ForkingExecutor.java │ ├── Formatter.java │ ├── FormatterException.java │ ├── FormattingConfiguration.java │ ├── FormattingConfigurationBuilder.java │ ├── FormattingResult.java │ ├── FormattingResultBuilder.java │ ├── Logger.java │ ├── Logging.java │ ├── SerializableCallable.java │ ├── Serialization.java │ └── SerializationException.java └── test ├── java └── com │ └── spotify │ └── fmt │ ├── FMTTest.java │ └── ForkingExecutorTest.java └── resources ├── additionalfolders ├── invoker.properties ├── pom.xml └── src │ ├── additionalfolder │ └── java │ │ ├── HelloWorldTest.java │ │ ├── HelloWorldTest2.java │ │ ├── HelloWorldTest3.java │ │ ├── HelloWorldTest4.java │ │ └── HelloWorldTest5.java │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── check_formatted ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── check_notformatted ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── check_notformatted_ignored ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ ├── ignored │ └── HelloWorld1Unformatted.java │ └── notignored │ └── HelloWorld1.java ├── check_skipsourcedirectory ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── check_skiptestsourcedirectory ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── failed_formatting ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── failonerrorfalse_formatted ├── invoker.properties ├── pom.xml ├── postbuild.groovy └── src │ └── main │ └── java │ └── HelloWorld1.java ├── failonerrorfalse_notformatted ├── invoker.properties ├── pom.xml ├── postbuild.groovy └── src │ └── main │ └── java │ └── HelloWorld1.java ├── failonerrormissingsources ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ ├── HelloWorld1.java │ └── HelloWorld2.java ├── failonerrortrue_notformatted ├── invoker.properties ├── pom.xml ├── postbuild.groovy └── src │ └── main │ └── java │ └── HelloWorld1.java ├── failonerrorwithsources ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── failonunknownstyle ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── fork_always ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── fork_never_afterjdk16 ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── fork_never_beforejdk16 ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── importclean ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── importunsorted ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── importunused ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── nosource ├── invoker.properties └── pom.xml ├── notestsource ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ ├── HelloWorld1.java │ └── HelloWorld2.java ├── onlyavajsources ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ ├── HelloWorld2.java │ │ └── HelloWorld3.avaj │ └── test │ └── java │ └── HelloWorldTest.java ├── onlytestsources ├── invoker.properties ├── pom.xml └── src │ └── test │ └── java │ └── HelloWorldTest.java ├── simple ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── simple_aosp ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── simple_google ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── skipsourcedirectory ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── skiptestsourcedirectory ├── invoker.properties ├── pom.xml └── src │ ├── main │ └── java │ │ ├── HelloWorld1.java │ │ └── HelloWorld2.java │ └── test │ └── java │ └── HelloWorldTest.java ├── switchwitharrows ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── com.spotify.fmt.test │ └── Main.java ├── unsupported_fork_mode ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java ├── validateonly_formatted ├── invoker.properties ├── pom.xml └── src │ └── main │ └── java │ └── HelloWorld1.java └── validateonly_notformatted ├── invoker.properties ├── pom.xml └── src └── main └── java └── HelloWorld1.java /.github/ISSUE_TEMPLATE/bug-report-about-aspects-of-the-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/bug-report-about-aspects-of-the-formatting.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-in-the-maven-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/bug-report-in-the-maven-plugin.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/AbstractFMT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/AbstractFMT.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/Check.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/Check.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FMT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FMT.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/ForkingExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/ForkingExecutor.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/Formatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/Formatter.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FormatterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FormatterException.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FormattingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FormattingConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FormattingConfigurationBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FormattingConfigurationBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FormattingResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FormattingResult.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/FormattingResultBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/FormattingResultBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/Logger.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/Logging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/Logging.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/SerializableCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/SerializableCallable.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/Serialization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/Serialization.java -------------------------------------------------------------------------------- /src/main/java/com/spotify/fmt/SerializationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/main/java/com/spotify/fmt/SerializationException.java -------------------------------------------------------------------------------- /src/test/java/com/spotify/fmt/FMTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/java/com/spotify/fmt/FMTTest.java -------------------------------------------------------------------------------- /src/test/java/com/spotify/fmt/ForkingExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/java/com/spotify/fmt/ForkingExecutorTest.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/pom.xml -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest2.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest3.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest4.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/additionalfolder/java/HelloWorldTest5.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/additionalfolders/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/additionalfolders/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/check_formatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_formatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/check_formatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_formatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/check_formatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_formatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/check_notformatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/check_notformatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/check_notformatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/check_notformatted_ignored/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted_ignored/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/check_notformatted_ignored/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted_ignored/pom.xml -------------------------------------------------------------------------------- /src/test/resources/check_notformatted_ignored/src/main/java/ignored/HelloWorld1Unformatted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted_ignored/src/main/java/ignored/HelloWorld1Unformatted.java -------------------------------------------------------------------------------- /src/test/resources/check_notformatted_ignored/src/main/java/notignored/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_notformatted_ignored/src/main/java/notignored/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/check_skipsourcedirectory/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skipsourcedirectory/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/check_skipsourcedirectory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skipsourcedirectory/pom.xml -------------------------------------------------------------------------------- /src/test/resources/check_skipsourcedirectory/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skipsourcedirectory/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/check_skipsourcedirectory/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skipsourcedirectory/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/check_skipsourcedirectory/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skipsourcedirectory/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/check_skiptestsourcedirectory/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skiptestsourcedirectory/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/check_skiptestsourcedirectory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skiptestsourcedirectory/pom.xml -------------------------------------------------------------------------------- /src/test/resources/check_skiptestsourcedirectory/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skiptestsourcedirectory/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/check_skiptestsourcedirectory/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skiptestsourcedirectory/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/check_skiptestsourcedirectory/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/check_skiptestsourcedirectory/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/failed_formatting/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failed_formatting/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failed_formatting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failed_formatting/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failed_formatting/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failed_formatting/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_formatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_formatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_formatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_formatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_formatted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_formatted/postbuild.groovy -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_formatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_formatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_notformatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_notformatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_notformatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_notformatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_notformatted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_notformatted/postbuild.groovy -------------------------------------------------------------------------------- /src/test/resources/failonerrorfalse_notformatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorfalse_notformatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrormissingsources/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrormissingsources/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonerrormissingsources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrormissingsources/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonerrormissingsources/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrormissingsources/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrormissingsources/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrormissingsources/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/failonerrortrue_notformatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrortrue_notformatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonerrortrue_notformatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrortrue_notformatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonerrortrue_notformatted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrortrue_notformatted/postbuild.groovy -------------------------------------------------------------------------------- /src/test/resources/failonerrortrue_notformatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrortrue_notformatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrorwithsources/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorwithsources/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonerrorwithsources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorwithsources/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonerrorwithsources/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorwithsources/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonerrorwithsources/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorwithsources/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/failonerrorwithsources/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonerrorwithsources/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/failonunknownstyle/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonunknownstyle/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/failonunknownstyle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonunknownstyle/pom.xml -------------------------------------------------------------------------------- /src/test/resources/failonunknownstyle/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonunknownstyle/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/failonunknownstyle/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonunknownstyle/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/failonunknownstyle/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/failonunknownstyle/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/fork_always/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_always/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/fork_always/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_always/pom.xml -------------------------------------------------------------------------------- /src/test/resources/fork_always/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_always/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/fork_never_afterjdk16/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_afterjdk16/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/fork_never_afterjdk16/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_afterjdk16/pom.xml -------------------------------------------------------------------------------- /src/test/resources/fork_never_afterjdk16/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_afterjdk16/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/fork_never_beforejdk16/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_beforejdk16/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/fork_never_beforejdk16/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_beforejdk16/pom.xml -------------------------------------------------------------------------------- /src/test/resources/fork_never_beforejdk16/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/fork_never_beforejdk16/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/importclean/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importclean/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/importclean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importclean/pom.xml -------------------------------------------------------------------------------- /src/test/resources/importclean/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importclean/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/importunsorted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunsorted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/importunsorted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunsorted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/importunsorted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunsorted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/importunused/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunused/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/importunused/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunused/pom.xml -------------------------------------------------------------------------------- /src/test/resources/importunused/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/importunused/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/nosource/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/nosource/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/nosource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/nosource/pom.xml -------------------------------------------------------------------------------- /src/test/resources/notestsource/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/notestsource/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/notestsource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/notestsource/pom.xml -------------------------------------------------------------------------------- /src/test/resources/notestsource/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/notestsource/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/notestsource/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/notestsource/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/pom.xml -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/src/main/java/HelloWorld3.avaj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/src/main/java/HelloWorld3.avaj -------------------------------------------------------------------------------- /src/test/resources/onlyavajsources/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlyavajsources/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/onlytestsources/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlytestsources/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/onlytestsources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlytestsources/pom.xml -------------------------------------------------------------------------------- /src/test/resources/onlytestsources/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/onlytestsources/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/simple/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple/pom.xml -------------------------------------------------------------------------------- /src/test/resources/simple/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/simple/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/simple/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/simple_aosp/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_aosp/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/simple_aosp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_aosp/pom.xml -------------------------------------------------------------------------------- /src/test/resources/simple_aosp/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_aosp/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/simple_aosp/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_aosp/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/simple_aosp/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_aosp/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/simple_google/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_google/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/simple_google/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_google/pom.xml -------------------------------------------------------------------------------- /src/test/resources/simple_google/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_google/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/simple_google/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_google/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/simple_google/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/simple_google/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/skipsourcedirectory/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skipsourcedirectory/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/skipsourcedirectory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skipsourcedirectory/pom.xml -------------------------------------------------------------------------------- /src/test/resources/skipsourcedirectory/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skipsourcedirectory/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/skipsourcedirectory/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skipsourcedirectory/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/skipsourcedirectory/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skipsourcedirectory/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/skiptestsourcedirectory/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skiptestsourcedirectory/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/skiptestsourcedirectory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skiptestsourcedirectory/pom.xml -------------------------------------------------------------------------------- /src/test/resources/skiptestsourcedirectory/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skiptestsourcedirectory/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/skiptestsourcedirectory/src/main/java/HelloWorld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skiptestsourcedirectory/src/main/java/HelloWorld2.java -------------------------------------------------------------------------------- /src/test/resources/skiptestsourcedirectory/src/test/java/HelloWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/skiptestsourcedirectory/src/test/java/HelloWorldTest.java -------------------------------------------------------------------------------- /src/test/resources/switchwitharrows/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/switchwitharrows/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/switchwitharrows/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/switchwitharrows/pom.xml -------------------------------------------------------------------------------- /src/test/resources/switchwitharrows/src/main/java/com.spotify.fmt.test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/switchwitharrows/src/main/java/com.spotify.fmt.test/Main.java -------------------------------------------------------------------------------- /src/test/resources/unsupported_fork_mode/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/unsupported_fork_mode/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/unsupported_fork_mode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/unsupported_fork_mode/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unsupported_fork_mode/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/unsupported_fork_mode/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/validateonly_formatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_formatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/validateonly_formatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_formatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/validateonly_formatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_formatted/src/main/java/HelloWorld1.java -------------------------------------------------------------------------------- /src/test/resources/validateonly_notformatted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_notformatted/invoker.properties -------------------------------------------------------------------------------- /src/test/resources/validateonly_notformatted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_notformatted/pom.xml -------------------------------------------------------------------------------- /src/test/resources/validateonly_notformatted/src/main/java/HelloWorld1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/fmt-maven-plugin/HEAD/src/test/resources/validateonly_notformatted/src/main/java/HelloWorld1.java --------------------------------------------------------------------------------