diff options
author | Keong Lim <keong.lim@huawei.com> | 2019-02-28 15:11:50 +1100 |
---|---|---|
committer | Keong Lim <keong.lim@huawei.com> | 2019-02-28 17:27:58 +1100 |
commit | 9c6ae0516b79926499bbf232dac9a668784251bd (patch) | |
tree | 9c71df1e582d968e9bf70da8955b69b48ca7c6d7 /pom.xml | |
parent | 2ef6648fdf2edac96ada60f825b2a03b065c7982 (diff) |
AAI-2198 Consistent code style in graphadmin
Add plugins to graphadmin/pom.xml
Add Eclipse formatter configuration file
Change-Id: I9d90b52fbc95ccb7e408729a6431ef16e93c48a0
Issue-ID: AAI-2198
Signed-off-by: Keong Lim <keong.lim@huawei.com>
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 35 |
1 files changed, 34 insertions, 1 deletions
@@ -426,7 +426,7 @@ <dependency> <groupId>org.janusgraph</groupId> <artifactId>janusgraph-cql</artifactId> - <version>${janusgraph.version}</version> + <version>${janusgraph.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> @@ -865,6 +865,39 @@ </plugins> </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-site-plugin</artifactId> |