Upversion for Dublin release
[aai/schema-service.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index edc2f1f..3513f3b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
     </parent>
     <groupId>org.onap.aai.schema-service</groupId>
     <artifactId>schema-service</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.7-SNAPSHOT</version>
     <name>aai-schema-service</name>
     <packaging>pom</packaging>
     <modules>
     <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>
                             <include>src/test/java/**</include>
                             <include>pom.xml</include>
                         </includes>
-                        <skipExistingHeaders>false</skipExistingHeaders>
+                        <skipExistingHeaders>true</skipExistingHeaders>
                         <skip>false</skip>
                         <validHeaders>
                             <header>LICENSE_ALT1.txt</header>
                     <executions>
                         <execution>
                             <id>attach-sources</id>
-                            <phase>deploy</phase>
+                            <phase>verify</phase>
                             <goals>
                                 <goal>jar-no-fork</goal>
                             </goals>