aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorKeong Lim <keong.lim@huawei.com>2019-02-28 14:45:06 +1100
committerKeong Lim <keong.lim@huawei.com>2019-02-28 14:54:11 +1100
commitfcefc165b45d1dee87c57914e9c45943649d76b8 (patch)
treee10a14c39e4f089f9d1589ad147631ed205fb8fb /pom.xml
parentf60a17c6abb6deef1c24f917488745cbc6e6a566 (diff)
AAI-2198 Consistent code style in gizmo
Add plugins to gizmo/pom.xml Add Eclipse formatter configuration file Change-Id: Ifd63553affb1bd20574eff45a4730972b8ca75ff 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 16d43ef..846b39d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -359,6 +359,39 @@ limitations under the License.
<build>
<finalName>${project.artifactId}</finalName>
<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.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.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>