Plugin to format/validate POM 30/95830/2
authorSINGAL, KAPIL (ks220y) <ks220y@att.com>
Tue, 17 Sep 2019 16:36:59 +0000 (16:36 +0000)
committerBrinda Santh Muthuramalingam <brindasanth@in.ibm.com>
Tue, 17 Sep 2019 17:01:40 +0000 (17:01 +0000)
Adding tidy-maven-plugin and related profile to format/vaidate pom files

To format POM Files just run mvn process-sources -P format

Issue-ID: CCSDK-1739
Signed-off-by: SINGAL, KAPIL (ks220y) <ks220y@att.com>
Change-Id: I58dc261ac7b3179a91a0ab5a06237990707543f5

49 files changed:
cds-ui/application/pom.xml
cds-ui/client/pom.xml
cds-ui/pom.xml
cds-ui/server/pom.xml
ms/blueprintsprocessor/application/pom.xml
ms/blueprintsprocessor/cba-parent/pom.xml
ms/blueprintsprocessor/distribution/pom.xml
ms/blueprintsprocessor/functions/ansible-awx-executor/pom.xml
ms/blueprintsprocessor/functions/cli-executor/pom.xml
ms/blueprintsprocessor/functions/config-snapshots/pom.xml
ms/blueprintsprocessor/functions/netconf-executor/pom.xml
ms/blueprintsprocessor/functions/pom.xml
ms/blueprintsprocessor/functions/python-executor/pom.xml
ms/blueprintsprocessor/functions/resource-resolution/pom.xml
ms/blueprintsprocessor/functions/restconf-executor/pom.xml
ms/blueprintsprocessor/modules/commons/db-lib/pom.xml
ms/blueprintsprocessor/modules/commons/dmaap-lib/pom.xml
ms/blueprintsprocessor/modules/commons/grpc-lib/pom.xml
ms/blueprintsprocessor/modules/commons/message-lib/pom.xml
ms/blueprintsprocessor/modules/commons/pom.xml
ms/blueprintsprocessor/modules/commons/processor-core/pom.xml
ms/blueprintsprocessor/modules/commons/rest-lib/pom.xml
ms/blueprintsprocessor/modules/commons/ssh-lib/pom.xml
ms/blueprintsprocessor/modules/inbounds/configs-api/pom.xml
ms/blueprintsprocessor/modules/inbounds/designer-api/pom.xml
ms/blueprintsprocessor/modules/inbounds/health-api/pom.xml
ms/blueprintsprocessor/modules/inbounds/pom.xml
ms/blueprintsprocessor/modules/inbounds/resource-api/pom.xml
ms/blueprintsprocessor/modules/inbounds/selfservice-api/pom.xml
ms/blueprintsprocessor/modules/outbounds/pom.xml
ms/blueprintsprocessor/modules/pom.xml
ms/blueprintsprocessor/modules/services/execution-service/pom.xml
ms/blueprintsprocessor/modules/services/pom.xml
ms/blueprintsprocessor/modules/services/workflow-service/pom.xml
ms/blueprintsprocessor/parent/pom.xml
ms/blueprintsprocessor/pom.xml
ms/command-executor/pom.xml
ms/controllerblueprints/modules/blueprint-core/pom.xml
ms/controllerblueprints/modules/blueprint-proto/pom.xml
ms/controllerblueprints/modules/blueprint-validation/pom.xml
ms/controllerblueprints/modules/pom.xml
ms/controllerblueprints/modules/resource-dict/pom.xml
ms/controllerblueprints/parent/pom.xml
ms/controllerblueprints/pom.xml
ms/sdclistener/application/pom.xml
ms/sdclistener/distribution/pom.xml
ms/sdclistener/parent/pom.xml
ms/sdclistener/pom.xml
pom.xml

index 87cb4f2..de8827f 100644 (file)
@@ -111,5 +111,4 @@ limitations under the License.
             </build>
         </profile>
     </profiles>
-
 </project>
index f25e782..4217ac5 100644 (file)
@@ -40,7 +40,6 @@ limitations under the License.
     <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
   </properties>
 
-
   <build>
     <plugins>
       <plugin>
index de2be35..34a72bd 100644 (file)
@@ -36,6 +36,12 @@ limitations under the License.
     <name>cds-ui-parent</name>
     <description>Creates Controller Design Studio UI Docker container</description>
 
+    <modules>
+        <module>client</module>
+        <module>server</module>
+        <module>application</module>
+    </modules>
+
     <properties>
         <image.name>onap/ccsdk-cds-ui</image.name>
         <ccsdk.project.version>${project.version}</ccsdk.project.version>
@@ -44,11 +50,4 @@ limitations under the License.
         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
         <docker.verbose>true</docker.verbose>
     </properties>
-
-    <modules>
-        <module>client</module>
-        <module>server</module>
-        <module>application</module>
-    </modules>
-
 </project>
index 2d6d646..dedf129 100644 (file)
@@ -42,7 +42,6 @@ limitations under the License.
         <docker.push.phase>deploy</docker.push.phase>
     </properties>
 
-
     <build>
         <plugins>
             <plugin>
@@ -139,8 +138,8 @@ limitations under the License.
             </plugin>
         </plugins>
     </build>
-    
-        <profiles>
+
+    <profiles>
         <profile>
             <id>docker</id>
             <build>
index a67b10d..90e9f50 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
+
     <artifactId>application</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Application</name>
     <description>Blueprints Processor Application</description>
 
             <artifactId>logback-classic</artifactId>
         </dependency>
     </dependencies>
+
     <build>
         <resources>
             <resource>
index a1b6bef..5bdf595 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
+
     <artifactId>cba-parent</artifactId>
-    <name>CBA Parent</name>
     <packaging>pom</packaging>
 
+    <name>CBA Parent</name>
+
     <build>
         <sourceDirectory>${project.basedir}/Scripts/kotlin</sourceDirectory>
         <testSourceDirectory>${project.basedir}/Tests/kotlin</testSourceDirectory>
index 4037c98..884d76a 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
+
     <artifactId>distribution</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Distribution</name>
+
     <properties>
         <assembly.id>maven</assembly.id>
         <name.space>org.onap.ccsdk.cds</name.space>
@@ -43,6 +47,7 @@
             <artifactId>application</artifactId>
         </dependency>
     </dependencies>
+
     <build>
         <plugins>
             <plugin>
@@ -88,8 +93,7 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <!--build the final artifact for docker deployment -->
+            <plugin><!--build the final artifact for docker deployment -->
                 <artifactId>maven-assembly-plugin</artifactId>
                 <version>3.1.0</version>
                 <configuration>
index 9613030..d40ae21 100644 (file)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>functions</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>ansible-awx-executor</artifactId>
     <version>0.7.0-SNAPSHOT</version>
+
     <name>Blueprints Processor Function - Ansible AWX Executor</name>
     <description>Blueprints Processor Function - Ansible Executor</description>
 
@@ -51,5 +53,4 @@
             <version>${apache.httpcomponents.client.version}</version>
         </dependency>
     </dependencies>
-
 </project>
index b45fdb3..07efd55 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>functions</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
+
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>cli-executor</artifactId>
     <version>0.7.0-SNAPSHOT</version>
+
     <name>Blueprints Processor Function - CLI Executor</name>
     <description>Blueprints Processor Function - CLI Executor</description>
 
@@ -37,6 +40,4 @@
             <artifactId>ssh-lib</artifactId>
         </dependency>
     </dependencies>
-
-
 </project>
index 0ad9796..0801e6d 100644 (file)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>functions</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>config-snapshots</artifactId>
     <version>0.7.0-SNAPSHOT</version>
+
     <name>Blueprints Processor Function - Config Snapshots</name>
     <description>Blueprints Processor Function - Config Snapshots</description>
 
@@ -55,5 +57,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index a10dfba..07415c3 100644 (file)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
+
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>netconf-executor</artifactId>
     <version>0.7.0-SNAPSHOT</version>
+
     <name>Blueprints Processor Function - Netconf Executor</name>
     <description>Blueprints Processor Function - Netconf Executor</description>
 
index 73daf22..3ee6737 100755 (executable)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <packaging>pom</packaging>
+
     <artifactId>functions</artifactId>
+    <packaging>pom</packaging>
+
     <name>Blueprints Processor Functions</name>
     <description>Blueprints Processor Functions</description>
+
     <modules>
         <module>resource-resolution</module>
         <module>ansible-awx-executor</module>
index 872e5a6..5601922 100644 (file)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>functions</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>python-executor</artifactId>
+
     <name>Blueprints Processor Function - Python Executor</name>
     <description>Blueprints Processor Function - Python Executor</description>
 
@@ -33,6 +35,4 @@
             <artifactId>jython-standalone</artifactId>
         </dependency>
     </dependencies>
-
-
 </project>
index 66210f2..e8116b1 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>resource-resolution</artifactId>
     <version>0.7.0-SNAPSHOT</version>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Function - Resource Resolution</name>
     <description>Blueprints Processor Function - Resource Resolution</description>
 
@@ -61,5 +64,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index 2872a5a..8e75597 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>functions</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>functions</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
+
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
     <artifactId>restconf-executor</artifactId>
     <version>0.7.0-SNAPSHOT</version>
+
     <name>Blueprints Processor Function - Restconf Executor</name>
     <description>Blueprints Processor Function - Restconf Executor</description>
 
@@ -38,6 +41,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-
 </project>
index 67b8424..f444fde 100644 (file)
@@ -17,6 +17,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>commons</artifactId>
@@ -25,6 +26,7 @@
 
     <artifactId>db-lib</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor DB Lib</name>
     <description>Blueprints Processor DB Lib</description>
 
@@ -69,5 +71,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index 3ed0424..4549620 100644 (file)
@@ -20,6 +20,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>commons</artifactId>
 
     <artifactId>dmaap-lib</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Dmaap Lib</name>
     <description>Blueprints Processor Dmaap Lib</description>
 
-
     <dependencies>
         <dependency>
             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
@@ -79,5 +80,4 @@
             <artifactId>processor-core</artifactId>
         </dependency>
     </dependencies>
-
 </project>
index 5cc29a6..5945e29 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>commons</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>commons</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>grpc-lib</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor GRPC Lib</name>
     <description>Blueprints Processor GRPC Lib</description>
 
@@ -41,5 +43,4 @@
             <artifactId>processor-core</artifactId>
         </dependency>
     </dependencies>
-
 </project>
index b5b8c46..f92a8f4 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>commons</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>commons</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>message-lib</artifactId>
+
     <name>Blueprints Processor Messaging Lib</name>
     <description>Blueprints Processor Messaging Lib</description>
+
     <dependencies>
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
index 37dd5d7..33255ac 100755 (executable)
@@ -19,6 +19,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>modules</artifactId>
@@ -27,6 +28,7 @@
 
     <artifactId>commons</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Commons POM</name>
     <description>Blueprints Processor Commons</description>
 
@@ -39,6 +41,7 @@
         <module>message-lib</module>
         <module>ssh-lib</module>
     </modules>
+
     <dependencies>
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
@@ -76,5 +79,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index 673d127..0bc8844 100644 (file)
@@ -18,6 +18,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>commons</artifactId>
 
     <artifactId>processor-core</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Core</name>
     <description>Blueprints Processor Core</description>
+
     <dependencies>
         <dependency>
             <groupId>org.springframework.boot</groupId>
index 7c6cceb..a7d49c5 100644 (file)
@@ -18,6 +18,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>commons</artifactId>
 
     <artifactId>rest-lib</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Rest Lib</name>
     <description>Blueprints Processor Rest Lib</description>
+
     <dependencies>
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
@@ -61,5 +64,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index ff09b83..0e6a0bf 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>commons</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>commons</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>ssh-lib</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor SSH Lib</name>
     <description>Blueprints Processor SSH Lib</description>
+
     <dependencies>
         <dependency>
             <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
index d4d0307..2cf5f5f 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>inbounds</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <artifactId>configs-api</artifactId>
     <version>0.7.0-SNAPSHOT</version>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Resource Configurations API</name>
     <description>Blueprints Processor Resource Configurations API</description>
 
index 12cb8ae..303168d 100644 (file)
   ~  limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>inbounds</artifactId>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+        <artifactId>inbounds</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
+
     <artifactId>designer-api</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Designer API</name>
     <description>Blueprints Processor Designer API</description>
-
 </project>
index 6037804..9d50e13 100644 (file)
   ~  See the License for the specific language governing permissions and
   ~  limitations under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
+
   <parent>
-    <artifactId>inbounds</artifactId>
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
+    <artifactId>inbounds</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
-  <artifactId>health-api</artifactId>
 
+  <artifactId>health-api</artifactId>
   <packaging>jar</packaging>
+
   <name>Blueprints Processor Health API</name>
   <description>checking system check health endpoints</description>
 
index a1d7161..1729f2f 100644 (file)
@@ -17,6 +17,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>modules</artifactId>
@@ -25,6 +26,7 @@
 
     <artifactId>inbounds</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Inbounds POM</name>
     <description>Blueprints Processor Inbounds</description>
 
@@ -35,6 +37,7 @@
         <module>selfservice-api</module>
         <module>health-api</module>
     </modules>
+
     <dependencies>
         <dependency>
             <groupId>org.springframework.security</groupId>
index da233b8..32324bf 100644 (file)
@@ -16,6 +16,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>inbounds</artifactId>
@@ -24,6 +25,7 @@
 
     <artifactId>resource-api</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Resource API</name>
     <description>Blueprints Processor Resource API</description>
 
index b5cac58..1a9b5fc 100755 (executable)
@@ -19,6 +19,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>inbounds</artifactId>
@@ -27,6 +28,7 @@
 
     <artifactId>selfservice-api</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Selfservice API</name>
     <description>Blueprints Processor Selfservice API</description>
 
index 34eba83..81a5a3e 100644 (file)
@@ -16,6 +16,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>modules</artifactId>
@@ -24,7 +25,7 @@
 
     <artifactId>outbounds</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Outbounds POM</name>
     <description>Blueprints Processor Outbounds</description>
-
 </project>
index ea39e2a..87dfb56 100644 (file)
@@ -18,6 +18,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>parent</artifactId>
@@ -27,6 +28,7 @@
 
     <artifactId>modules</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Modules</name>
     <description>Blueprints Processor Modules</description>
 
@@ -36,6 +38,7 @@
         <module>services</module>
         <module>inbounds</module>
     </modules>
+
     <build>
         <plugins>
             <plugin>
@@ -64,6 +67,4 @@
             </plugin>
         </plugins>
     </build>
-
-
 </project>
index 784906b..8bee7c9 100644 (file)
@@ -17,6 +17,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>services</artifactId>
@@ -25,6 +26,7 @@
 
     <artifactId>execution-service</artifactId>
     <packaging>jar</packaging>
+
     <name>Blueprints Processor Execution Service</name>
     <description>Blueprints Processor Execution Service</description>
 
index 0a5f9b6..8976701 100755 (executable)
@@ -19,6 +19,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>modules</artifactId>
     </parent>
 
     <artifactId>services</artifactId>
+    <packaging>pom</packaging>
+
     <name>Blueprints Processor Service POM</name>
     <description>Blueprints Processor Service</description>
-    <packaging>pom</packaging>
 
     <modules>
         <module>execution-service</module>
index c3effa5..fe7dde9 100644 (file)
   ~ limitations under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
         <artifactId>services</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>workflow-service</artifactId>
+
     <name>Blueprints Processor Workflow Service</name>
     <description>Blueprints Processor Workflow Service</description>
 
@@ -41,6 +43,4 @@
             <artifactId>sli-provider</artifactId>
         </dependency>
     </dependencies>
-
-
 </project>
index cd40564..726ba55 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>blueprintsprocessor</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
     <artifactId>parent</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Parent</name>
     <description>Blueprints Processor Parent</description>
+
     <properties>
         <sshd.version>2.2.0</sshd.version>
         <jsch.version>0.1.55</jsch.version>
@@ -50,6 +54,7 @@
         <xmlunit.version>2.6.3</xmlunit.version>
         <json-patch.version>1.9</json-patch.version>
     </properties>
+
     <dependencyManagement>
         <dependencies>
             <!-- Spring Boot -->
 
         </dependencies>
     </dependencyManagement>
-
     <dependencies>
         <dependency>
             <groupId>org.apache.commons</groupId>
index 7714d85..888f2a1 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>ms</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
+
     <artifactId>blueprintsprocessor</artifactId>
     <packaging>pom</packaging>
+
     <name>Blueprints Processor Root</name>
     <description>Blueprints Processor Root</description>
 
+    <modules>
+        <module>parent</module>
+        <module>cba-parent</module>
+        <module>modules</module>
+        <module>functions</module>
+        <module>application</module>
+        <module>distribution</module>
+    </modules>
+
     <properties>
         <service.name>BlueprintsProcessor</service.name>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <maven.compiler.source>1.8</maven.compiler.source>
         <ccsdk.project.version>${project.version}</ccsdk.project.version>
     </properties>
-
-    <modules>
-        <module>parent</module>
-        <module>cba-parent</module>
-        <module>modules</module>
-        <module>functions</module>
-        <module>application</module>
-        <module>distribution</module>
-    </modules>
-
 </project>
index 5861912..0db7af9 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>ms</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
+
     <artifactId>command-executor</artifactId>
     <packaging>pom</packaging>
+
     <name>Command Executor</name>
     <description>Micro-service providing python environment with gRPC binding for command execution</description>
 
index 1cb912c..5dd5f1b 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
         <artifactId>modules</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <artifactId>blueprint-core</artifactId>
+
     <name>Controller Blueprints Core</name>
 
     <dependencies>
@@ -95,5 +98,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
index 7d4d600..eb4dd9f 100644 (file)
   ~  limitations under the License.
   -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
         <artifactId>modules</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>blueprint-proto</artifactId>
+
     <name>Controller Blueprints Proto</name>
     <description>Controller Blueprints Proto</description>
 
     </dependencies>
 
     <build>
-        <extensions>
-            <extension>
-                <groupId>kr.motd.maven</groupId>
-                <artifactId>os-maven-plugin</artifactId>
-                <version>1.6.2</version>
-            </extension>
-        </extensions>
         <plugins>
             <plugin>
                 <groupId>org.xolstice.maven.plugins</groupId>
@@ -89,8 +82,8 @@
                 </executions>
             </plugin>
             <plugin>
-                <artifactId>kotlin-maven-plugin</artifactId>
                 <groupId>org.jetbrains.kotlin</groupId>
+                <artifactId>kotlin-maven-plugin</artifactId>
                 <version>${kotlin.maven.version}</version>
                 <executions>
                     <execution>
                 </executions>
             </plugin>
         </plugins>
+        <extensions>
+            <extension>
+                <groupId>kr.motd.maven</groupId>
+                <artifactId>os-maven-plugin</artifactId>
+                <version>1.6.2</version>
+            </extension>
+        </extensions>
     </build>
 </project>
index 04c7511..40fff14 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
         <artifactId>modules</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <artifactId>blueprint-validation</artifactId>
+
     <name>Controller Blueprints Validation Service</name>
 
     <dependencies>
index 6cb4ea8..028e28b 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
+
     <artifactId>modules</artifactId>
-    <name>Controller Blueprints Modules</name>
     <packaging>pom</packaging>
 
+    <name>Controller Blueprints Modules</name>
+
     <modules>
         <module>blueprint-core</module>
         <module>resource-dict</module>
@@ -85,5 +88,4 @@
             </plugin>
         </plugins>
     </build>
-
 </project>
index 4ee4f91..b6803d4 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
         <artifactId>modules</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <artifactId>resource-dict</artifactId>
+
     <name>Controller Blueprints Resource Dictionary</name>
 
     <dependencies>
@@ -37,6 +40,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-
 </project>
index 86a7211..62f300c 100644 (file)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>controllerblueprints</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId>
     <artifactId>parent</artifactId>
-    <name>Controller Blueprints Parent</name>
     <packaging>pom</packaging>
+
+    <name>Controller Blueprints Parent</name>
+
     <properties>
         <eelf.version>1.0.0</eelf.version>
         <guava.version>27.0.1-jre</guava.version>
@@ -38,6 +42,7 @@
         <jinja.version>2.5.1</jinja.version>
         <velocity.version>1.7</velocity.version>
     </properties>
+
     <dependencyManagement>
         <dependencies>
             <!-- Spring boot -->
             </dependency>
         </dependencies>
     </dependencyManagement>
-
     <dependencies>
         <dependency>
             <groupId>org.apache.commons</groupId>
             </plugin>
 
             <plugin>
-                <artifactId>kotlin-maven-plugin</artifactId>
                 <groupId>org.jetbrains.kotlin</groupId>
+                <artifactId>kotlin-maven-plugin</artifactId>
                 <version>${kotlin.maven.version}</version>
                 <executions>
                     <execution>
index 8abb36e..611741a 100644 (file)
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>ms</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
+
     <artifactId>controllerblueprints</artifactId>
-    <name>Controller Blueprints Root</name>
     <version>0.7.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
+    <name>Controller Blueprints Root</name>
+
+    <modules>
+        <module>parent</module>
+        <module>modules</module>
+    </modules>
+
     <properties>
         <service.name>ControllerBlueprints</service.name>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -36,9 +46,4 @@
         <maven.compiler.source>1.8</maven.compiler.source>
         <ccsdk.project.version>${project.version}</ccsdk.project.version>
     </properties>
-    <packaging>pom</packaging>
-    <modules>
-        <module>parent</module>
-        <module>modules</module>
-    </modules>
 </project>
index 7b12e14..d1048ac 100644 (file)
@@ -16,6 +16,7 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
+
   <parent>
     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
     <artifactId>parent</artifactId>
@@ -24,8 +25,9 @@
   </parent>
 
   <artifactId>application</artifactId>
-  <packaging>jar</packaging>
   <version>0.7.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
   <name>SDC Listener Application</name>
 
   <properties>
index 8f0120f..ca69478 100755 (executable)
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
         <artifactId>parent</artifactId>
         <version>0.7.0-SNAPSHOT</version>
         <relativePath>../parent</relativePath>
     </parent>
+
     <artifactId>distribution</artifactId>
     <packaging>pom</packaging>
+
     <name>SDC Listener Distribution</name>
+
     <properties>
         <assembly.id>maven</assembly.id>
         <name.space>org.onap.ccsdk.cds</name.space>
@@ -44,6 +48,7 @@
             <artifactId>application</artifactId>
         </dependency>
     </dependencies>
+
     <build>
         <plugins>
             <plugin>
@@ -89,8 +94,7 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <!--build the final artifact for docker deployment -->
+            <plugin><!--build the final artifact for docker deployment -->
                 <artifactId>maven-assembly-plugin</artifactId>
                 <version>3.1.0</version>
                 <configuration>
index 05bfdef..850dfa4 100755 (executable)
   ~  See the License for the specific language governing permissions and
   ~  limitations under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>sdclistener</artifactId>
         <version>0.7.0-SNAPSHOT</version>
     </parent>
+
     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
     <artifactId>parent</artifactId>
     <packaging>pom</packaging>
+
     <name>SDC Listener Parent</name>
     <description>SDC Listener Parent</description>
+
     <properties>
         <spring.boot.version>2.1.3.RELEASE</spring.boot.version>
         <spring.version>5.1.5.RELEASE</spring.version>
@@ -45,6 +48,7 @@
         <jmockit.version>1.19</jmockit.version>
         <reactorcore.version>3.2.6.RELEASE</reactorcore.version>
     </properties>
+
     <dependencyManagement>
         <dependencies>
             <!-- Spring Boot -->
index 42c6a1a..6439e31 100644 (file)
@@ -16,6 +16,7 @@
  -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.onap.ccsdk.cds</groupId>
         <artifactId>ms</artifactId>
     </parent>
 
     <artifactId>sdclistener</artifactId>
+    <packaging>pom</packaging>
+
     <name>SDC Listener Root</name>
     <description>SDC Listener Root</description>
-    <packaging>pom</packaging>
+
+    <modules>
+        <module>parent</module>
+        <module>application</module>
+        <module>distribution</module>
+    </modules>
 
     <properties>
         <service.name>sdclistener</service.name>
         <maven.compiler.source>1.8</maven.compiler.source>
         <ccsdk.project.version>${project.version}</ccsdk.project.version>
     </properties>
-
-    <modules>
-        <module>parent</module>
-        <module>application</module>
-        <module>distribution</module>
-    </modules>
-
 </project>
diff --git a/pom.xml b/pom.xml
index 5d58742..8350e1e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -16,6 +16,7 @@ See the License for the specific language governing permissions and
 limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
 
     <parent>
         <groupId>org.onap.ccsdk.parent</groupId>
@@ -24,8 +25,6 @@ limitations under the License.
         <relativePath/>
     </parent>
 
-    <modelVersion>4.0.0</modelVersion>
-
     <groupId>org.onap.ccsdk.cds</groupId>
     <artifactId>parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
@@ -33,17 +32,16 @@ limitations under the License.
 
     <name>cds-parent</name>
     <description>CCSDK Controller Design Studio</description>
+    <url>https://wiki.onap.org</url>
+    <organization>
+        <name>ONAP</name>
+    </organization>
 
     <modules>
         <module>cds-ui</module>
         <module>ms</module>
     </modules>
 
-    <url>https://wiki.onap.org</url>
-    <organization>
-        <name>ONAP</name>
-    </organization>
-
     <properties>
         <!--Don't set any language to let sonar enable multi-language support-->
         <sonar.language/>
@@ -57,6 +55,10 @@ limitations under the License.
         <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
         </sonar.coverage.jacoco.xmlReportPaths>
         <jacoco.version>0.8.3</jacoco.version>
+       
+       <!-- Properties for POM Format -->
+       <format.skipValidate>false</format.skipValidate>
+        <format.skipExecute>true</format.skipExecute>
     </properties>
 
     <build>
@@ -66,6 +68,35 @@ limitations under the License.
                 <artifactId>jacoco-maven-plugin</artifactId>
                 <version>${jacoco.version}</version>
             </plugin>
+
+           <!-- Plugin to Format/Validate POM Files -->
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>tidy-maven-plugin</artifactId>
+                <version>1.1.0</version>
+                <executions>
+                    <execution>
+                        <id>format-pom</id>
+                        <phase>process-sources</phase>
+                        <goals>
+                            <goal>pom</goal>
+                        </goals>
+                        <configuration>
+                            <skip>${format.skipExecute}</skip>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>validate-pom</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                        <configuration>
+                            <skip>${format.skipValidate}</skip>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
@@ -101,6 +132,14 @@ limitations under the License.
                 </plugins>
             </build>
         </profile>
-    </profiles>
 
+       <!-- Profile to format skip validate or execute -->
+       <profile>
+            <id>format</id>
+            <properties>
+                <format.skipValidate>true</format.skipValidate>
+                <format.skipExecute>false</format.skipExecute>
+            </properties>
+        </profile>
+    </profiles>
 </project>