├── .gitignore ├── .travis.yml ├── LICENSE ├── README.adoc ├── contrib └── pre-commit ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts └── travis-integ-tests.sh ├── settings.gradle ├── src ├── integTest │ └── groovy │ │ └── com │ │ └── github │ │ └── sherter │ │ └── googlejavaformatgradleplugin │ │ ├── AbstractIntegrationSpec.groovy │ │ ├── CmdlineSpec.groovy │ │ ├── ExtensionSpec.groovy │ │ ├── IntegrationTest.groovy │ │ ├── LoggingSpec.groovy │ │ ├── MultiprojectSpec.groovy │ │ ├── OptionsSpec.groovy │ │ ├── UpToDateSpec.groovy │ │ └── VerificationTaskTest.groovy ├── main │ ├── groovy │ │ └── com │ │ │ └── github │ │ │ └── sherter │ │ │ └── googlejavaformatgradleplugin │ │ │ ├── FormatTask.java │ │ │ ├── FormatterFactory.groovy │ │ │ ├── GoogleJavaFormat.groovy │ │ │ ├── GoogleJavaFormatExtension.groovy │ │ │ ├── GoogleJavaFormatPlugin.groovy │ │ │ ├── SharedContext.groovy │ │ │ ├── TaskConfigurator.java │ │ │ └── VerifyGoogleJavaFormat.groovy │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── sherter │ │ │ └── googlejavaformatgradleplugin │ │ │ ├── ConfigurationException.java │ │ │ ├── FileInfo.java │ │ │ ├── FileInfoDecoder.java │ │ │ ├── FileInfoEncoder.java │ │ │ ├── FileInfoStore.java │ │ │ ├── FileState.java │ │ │ ├── FileToStateMapper.java │ │ │ ├── FormatFileCallable.java │ │ │ ├── FormatterOptions.java │ │ │ ├── FormatterOptionsStore.java │ │ │ ├── PathException.java │ │ │ ├── PersistenceComponent.java │ │ │ ├── PersistenceModule.java │ │ │ ├── Utils.java │ │ │ └── VerifyFileCallable.java │ └── resources │ │ ├── META-INF │ │ └── gradle-plugins │ │ │ └── com.github.sherter.google-java-format.properties │ │ └── VERSION └── test │ └── groovy │ └── com │ └── github │ └── sherter │ └── googlejavaformatgradleplugin │ ├── ExtensionSpec.groovy │ ├── FileInfoDecoderTest.groovy │ ├── FileInfoEncoderTest.groovy │ ├── FileInfoStoreTest.groovy │ ├── FileInfoTest.groovy │ ├── FileToStateMapperTest.groovy │ ├── FormatFileCallableTest.groovy │ ├── FormatterFactoryTest.groovy │ ├── FormatterOptionsStoreTest.groovy │ ├── GoogleJavaFormatPluginTest.groovy │ └── VerifyFileCallableTest.groovy └── subprojects ├── format ├── build.gradle └── src │ ├── main │ └── groovy │ │ └── com │ │ └── github │ │ └── sherter │ │ └── googlejavaformatgradleplugin │ │ └── format │ │ ├── AbstractFormatterFactory.groovy │ │ ├── Configuration.java │ │ ├── Formatter.java │ │ ├── FormatterException.java │ │ ├── FormatterFactory.java │ │ ├── FormatterOption.java │ │ ├── Gjf.java │ │ ├── OneDotEightFactory.groovy │ │ ├── OneDotOneFactory.groovy │ │ ├── OneDotZeroFactory.groovy │ │ └── Style.java │ └── test │ └── groovy │ └── com │ └── github │ └── sherter │ └── googlejavaformatgradleplugin │ └── format │ ├── FormatterSpec.groovy │ └── Resolver.groovy └── test ├── build.gradle └── src ├── main └── groovy │ └── com │ └── github │ └── sherter │ └── googlejavaformatgradleplugin │ └── test │ ├── FileWithState.groovy │ └── Project.groovy └── test └── groovy └── com └── github └── sherter └── googlejavaformatgradleplugin └── test ├── FileWithStateTest.groovy └── ProjectTest.groovy /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | /.gradle/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/README.adoc -------------------------------------------------------------------------------- /contrib/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/contrib/pre-commit -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/travis-integ-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/scripts/travis-integ-tests.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/AbstractIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/AbstractIntegrationSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/CmdlineSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/CmdlineSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/ExtensionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/ExtensionSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/IntegrationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/IntegrationTest.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/LoggingSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/LoggingSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/MultiprojectSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/MultiprojectSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/OptionsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/OptionsSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/UpToDateSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/UpToDateSpec.groovy -------------------------------------------------------------------------------- /src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/VerificationTaskTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/integTest/groovy/com/github/sherter/googlejavaformatgradleplugin/VerificationTaskTest.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatTask.java -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterFactory.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormat.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/SharedContext.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/SharedContext.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/TaskConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/TaskConfigurator.java -------------------------------------------------------------------------------- /src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/VerifyGoogleJavaFormat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/VerifyGoogleJavaFormat.groovy -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/ConfigurationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/ConfigurationException.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfo.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoDecoder.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoEncoder.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileInfoStore.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileState.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileToStateMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FileToStateMapper.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatFileCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatFileCallable.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatterOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatterOptions.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatterOptionsStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/FormatterOptionsStore.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/PathException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/PathException.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/PersistenceComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/PersistenceComponent.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/PersistenceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/PersistenceModule.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/Utils.java -------------------------------------------------------------------------------- /src/main/java/com/github/sherter/googlejavaformatgradleplugin/VerifyFileCallable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/java/com/github/sherter/googlejavaformatgradleplugin/VerifyFileCallable.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.github.sherter.google-java-format.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/main/resources/META-INF/gradle-plugins/com.github.sherter.google-java-format.properties -------------------------------------------------------------------------------- /src/main/resources/VERSION: -------------------------------------------------------------------------------- 1 | 0.9 2 | -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/ExtensionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/ExtensionSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoDecoderTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoDecoderTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoEncoderTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoEncoderTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoStoreTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoStoreTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileInfoTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileToStateMapperTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FileToStateMapperTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatFileCallableTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatFileCallableTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterFactoryTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterFactoryTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterOptionsStoreTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/FormatterOptionsStoreTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/GoogleJavaFormatPluginTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/VerifyFileCallableTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/VerifyFileCallableTest.groovy -------------------------------------------------------------------------------- /subprojects/format/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/build.gradle -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/AbstractFormatterFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/AbstractFormatterFactory.groovy -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Configuration.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Formatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Formatter.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterException.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterFactory.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterOption.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Gjf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Gjf.java -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotEightFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotEightFactory.groovy -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotOneFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotOneFactory.groovy -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotZeroFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/OneDotZeroFactory.groovy -------------------------------------------------------------------------------- /subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Style.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Style.java -------------------------------------------------------------------------------- /subprojects/format/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/format/FormatterSpec.groovy -------------------------------------------------------------------------------- /subprojects/format/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Resolver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/format/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/format/Resolver.groovy -------------------------------------------------------------------------------- /subprojects/test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/test/build.gradle -------------------------------------------------------------------------------- /subprojects/test/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/test/FileWithState.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/test/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/test/FileWithState.groovy -------------------------------------------------------------------------------- /subprojects/test/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/test/Project.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/test/src/main/groovy/com/github/sherter/googlejavaformatgradleplugin/test/Project.groovy -------------------------------------------------------------------------------- /subprojects/test/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/test/FileWithStateTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/test/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/test/FileWithStateTest.groovy -------------------------------------------------------------------------------- /subprojects/test/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/test/ProjectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherter/google-java-format-gradle-plugin/HEAD/subprojects/test/src/test/groovy/com/github/sherter/googlejavaformatgradleplugin/test/ProjectTest.groovy --------------------------------------------------------------------------------