diff options
author | James Forsyth <jf2512@att.com> | 2019-03-05 22:59:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-05 22:59:03 +0000 |
commit | 3f327ac7565b91bc8e2daa5fcf63e2e7f38a9bd4 (patch) | |
tree | 7711d898b238ab3dfff1e06a2baf8e3ba37e82a3 /pom.xml | |
parent | 5c7690ce5d819f8f2f301c6f8ae58960d4143df9 (diff) | |
parent | 2ac07a124dcd4c2ef5c75a4246de5c838353c6cd (diff) |
Merge "AAI-2198 Consistent code style in resources"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -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> |