You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
operating system and version Windows 64 Pro/Java 21
The maven config in my project like this.
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.44.0.BETA4</version>
<configuration>
<java>
<!-- These are the defaults, you can override if you want -->
<includes>
<include>src/main/java/**/*.java</include>
<include>src/test/java/**/*.java</include>
</includes>
<!-- Cleanthat will refactor your code, but it may break your style: apply it before your formatter -->
<cleanthat/>
<googleJavaFormat>
<version>1.25.2</version>
<style>AOSP</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<!-- <eclipse/> --><!-- <prettier/> -->
<importOrder/>
<removeUnusedImports/>
<formatAnnotations/>
</java>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
</plugin>
[INFO] Index file does not exist. Fallback to an empty index
[ERROR] Step 'cleanthat' found problem in'ApplicationEvents.java':
eu/solven/cleanthat/language/IEngineProperties
java.lang.NoClassDefFoundError: eu/solven/cleanthat/language/IEngineProperties
The text was updated successfully, but these errors were encountered:
java.lang.NoClassDefFoundError
4.0.0.RC2
maven plugin 2.44.0.BETA4
Windows 64 Pro/Java 21
The maven config in my project like this.
The text was updated successfully, but these errors were encountered: