google-java-format-gradle-plugin icon indicating copy to clipboard operation
google-java-format-gradle-plugin copied to clipboard

Results 22 google-java-format-gradle-plugin issues
Sort by recently updated
recently updated
newest added

Recently I have been migrating my project to JDK 17. I used the common workaround for GJF 15.x, that is extra `--add-exports` directives: ``` org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \...

The plugin claims a syntax error, even though the task `compileJava` runs just fine. There's absolutely no syntax error in any of the files. I've also tried running the `clean`...

Noticed no answers on issues in a few months so asking for clarity!

Hello, I have tried with 2 versions V0.8 and V0.9 of the google formatter plugin. id 'com.github.sherter.google-java-format' version '0.9' With both of them I am getting the below error. It...

This plugin has two reported issues: ``` org.gradle.api.InvalidUserCodeException: Listener registration 'TaskExecutionGraph.beforeTask' by org.gradle.execution.taskgraph.DefaultTaskExecutionGraph@167d2e92 is unsupported. at org.gradle.configurationcache.initialization.DefaultConfigurationCacheProblemsListener.onBuildScopeListenerRegistration(ConfigurationCacheProblemsListener.kt:90) at sun.reflect.GeneratedMethodAccessor772.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) at org.gradle.internal.event.DefaultListenerManager$ListenerDetails.dispatch(DefaultListenerManager.java:398)...

Upon running with gradle with --warning-mode all I get the warning Property 'clean' has redundant getters: 'getClean()' and 'isClean()'. This behaviour has been deprecated and is scheduled to be removed...

To speed up CI builds for multi-module builds, it would help if VerifyGoogleJavaFormat was made cacheable. https://docs.gradle.org/current/userguide/build_cache.html#enable_caching_of_non_cacheable_tasks

I can't get your plugin to work Gradle version 3.4 Java 7 64bit Windows 7 64Bit Build.gradle ``` plugins { id "com.github.sherter.google-java-format" version "0.6" } apply plugin: 'java' sourceCompatibility =...

By using the project directory as the default input, nested projects are automatically formatted. For example, ``` . ├── LICENSE.txt ├── README.md ├── foo │   ├── bar │   │   ├──...