Browse Source

Changed the order of plugins

pull/455/head
Marcin Grzejszczak 6 years ago
parent
commit
dd3909611d
  1. 22
      .editorconfig
  2. 8
      pom.xml

22
.editorconfig

@ -1,14 +1,24 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true root = true
[*] [*.java]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
[*.groovy]
indent_style = tab
indent_size = 4
continuation_indent_size = 8
[*.xml]
indent_style = tab indent_style = tab
indent_size = 4 indent_size = 4
end_of_line = lf continuation_indent_size = 8
insert_final_newline = true
[*.yml] [*.yml]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
[*.yaml]
indent_style = space
indent_size = 2

8
pom.xml

@ -56,14 +56,14 @@
</additionalConfig> </additionalConfig>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin> <plugin>
<groupId>io.spring.javaformat</groupId> <groupId>io.spring.javaformat</groupId>
<artifactId>spring-javaformat-maven-plugin</artifactId> <artifactId>spring-javaformat-maven-plugin</artifactId>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins> </plugins>
</build> </build>

Loading…
Cancel
Save