diff options
author | Keong Lim <keong.lim@huawei.com> | 2019-02-28 14:31:41 +1100 |
---|---|---|
committer | Keong Lim <keong.lim@huawei.com> | 2019-02-28 14:33:15 +1100 |
commit | 020c5ad0f37b4c0d2cb1fcbee736cfb118b9d3de (patch) | |
tree | 786fbdfe047b2ecfb09789d57a8f0d05012974c1 /pom.xml | |
parent | 81ba5d09fe2d72a5679a9e690e8b559755560433 (diff) |
AAI-2198 Consistent code style in cacher
Add plugins to cacher/pom.xml
Add Eclipse formatter configuration file
Change-Id: Ifbc7db3cf1d846b18b179a7dd28af97a16e07c74
Issue-ID: AAI-2198
Signed-off-by: Keong Lim <keong.lim@huawei.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -510,6 +510,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.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-deploy-plugin</artifactId> |