summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorKeong Lim <keong.lim@huawei.com>2019-02-28 15:23:44 +1100
committerKeong Lim <keong.lim@huawei.com>2019-02-28 15:27:34 +1100
commit2ac07a124dcd4c2ef5c75a4246de5c838353c6cd (patch)
tree27563c034f113415ed8966b414b7f5633bed57f7 /pom.xml
parent9b3e62fa445eee5cdfeef3a2981babd26ce73a35 (diff)
AAI-2198 Consistent code style in resources
Add plugins to resources/pom.xml Add Eclipse formatter configuration file Change-Id: I6e86d02e179542247def27aa0b0b111f0d24bfa9 Issue-ID: AAI-2198 Signed-off-by: Keong Lim <keong.lim@huawei.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index bbc14f2..4f695b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,39 @@
<build>
<pluginManagement>
<plugins>
+ <!--
+ Using https://code.revelc.net/formatter-maven-plugin/ for Eclipse formatter
+ Using https://github.com/diffplug/spotless/tree/master/plugin-maven for import order
+ Use in combination to rewrite code and imports, then checkstyle
+
+ mvn formatter:format spotless:apply process-sources
+ -->
+ <plugin>
+ <groupId>net.revelc.code.formatter</groupId>
+ <artifactId>formatter-maven-plugin</artifactId>
+ <version>2.8.1</version>
+ <configuration>
+ <configFile>${project.parent.basedir}/onap-java-formatter.xml</configFile>
+ </configuration>
+ <!-- https://code.revelc.net/formatter-maven-plugin/
+ use mvn formatter:format to rewrite source files
+ use mvn formatter:validate to validate source files -->
+ </plugin>
+ <plugin>
+ <groupId>com.diffplug.spotless</groupId>
+ <artifactId>spotless-maven-plugin</artifactId>
+ <version>1.18.0</version>
+ <configuration>
+ <java>
+ <importOrder>
+ <order>com,java,javax,org</order>
+ </importOrder>
+ </java>
+ </configuration>
+ <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven
+ use mvn spotless:apply to rewrite source files
+ use mvn spotless:check to validate source files -->
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>