Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion openapi-maven-plugin/.idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions openapi-maven-plugin/config/import-order.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
0=javax
1=java
2=
3=\#
34 changes: 34 additions & 0 deletions openapi-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,40 @@
</plugins>
</pluginManagement>
<plugins>
<!-- Formatter -->
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.43.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
<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>
<!-- <include>src/test/java/io/github/kbuntrock/it/*.java</include>-->
</includes>
<palantirJavaFormat>
<version>2.40.0</version>
<style>PALANTIR</style> <!-- or (optional) -->
<formatJavadoc>false</formatJavadoc>
</palantirJavaFormat>
<removeUnusedImports/>
<importOrder>
<file>config/import-order.txt</file>
</importOrder>
</java>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
Expand Down