New standalone parent pom 61/87361/2
authorTimoney, Dan (dt5972) <dtimoney@att.com>
Thu, 9 May 2019 14:06:50 +0000 (10:06 -0400)
committerTimoney, Dan (dt5972) <dtimoney@att.com>
Thu, 9 May 2019 14:24:44 +0000 (10:24 -0400)
Added new parent pom to be used in containers that run outside of
OpenDaylight or springboot.

Change-Id: I6fd67fa05c4bee35df3f28bfdab82cc2e4368529
Issue-ID: CCSDK-1320
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
pom.xml
standalone/pom.xml [new file with mode: 0755]

diff --git a/pom.xml b/pom.xml
index a783085..c1a5521 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -1,74 +1,75 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <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">
+    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">
 
 
-       <modelVersion>4.0.0</modelVersion>
-       <packaging>pom</packaging>
-       <groupId>org.onap.ccsdk.parent</groupId>
-       <artifactId>parent</artifactId>
-       <version>1.3.0-SNAPSHOT</version>
-       <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>pom</packaging>
+    <groupId>org.onap.ccsdk.parent</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.3.0-SNAPSHOT</version>
+    <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
 
-       <properties>
-               <onap.nexus.host>nexus.onap.org</onap.nexus.host>
-               <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
-               <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
-       </properties>
+    <properties>
+        <onap.nexus.host>nexus.onap.org</onap.nexus.host>
+        <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
+        <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
+    </properties>
 
-       <distributionManagement>
-               <repository>
-                       <id>ecomp-releases</id>
-                       <url>https://nexus.onap.org/content/repositories/releases</url>
-               </repository>
-               <snapshotRepository>
-                       <id>ecomp-snapshots</id>
-                       <url>https://nexus.onap.org/content/repositories/snapshots</url>
-               </snapshotRepository>
-       </distributionManagement>
+    <distributionManagement>
+        <repository>
+            <id>ecomp-releases</id>
+            <url>https://nexus.onap.org/content/repositories/releases</url>
+        </repository>
+        <snapshotRepository>
+            <id>ecomp-snapshots</id>
+            <url>https://nexus.onap.org/content/repositories/snapshots</url>
+        </snapshotRepository>
+    </distributionManagement>
 
-       <profiles>
-               <profile>
-                       <id>nexus-staging</id>
-                       <activation>
-                           <property>
-                               <name>!altDeploymentRepository</name>
-                           </property>
-                       </activation>
-                       <build>
-                               <plugins>
-                                       <plugin>
-                                               <groupId>org.sonatype.plugins</groupId>
-                                               <artifactId>nexus-staging-maven-plugin</artifactId>
-                                               <version>1.6.7</version>
-                                               <extensions>true</extensions>
-                                               <configuration>
-                                                       <nexusUrl>https://${onap.nexus.host}</nexusUrl>
-                                                       <stagingProfileId>176c31dfe190a</stagingProfileId>
-                                                       <serverId>ecomp-staging</serverId>
-                                               </configuration>
-                                       </plugin>
-                               </plugins>
-                       </build>
-               </profile>
-       </profiles>
+    <profiles>
+        <profile>
+            <id>nexus-staging</id>
+            <activation>
+                <property>
+                    <name>!altDeploymentRepository</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.sonatype.plugins</groupId>
+                        <artifactId>nexus-staging-maven-plugin</artifactId>
+                        <version>1.6.7</version>
+                        <extensions>true</extensions>
+                        <configuration>
+                            <nexusUrl>https://${onap.nexus.host}</nexusUrl>
+                            <stagingProfileId>176c31dfe190a</stagingProfileId>
+                            <serverId>ecomp-staging</serverId>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>versions-maven-plugin</artifactId>
-                               <version>2.5</version>
-                               <configuration>
-                                       <processAllModules>true</processAllModules>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-       <modules>
-               <module>odlparent</module>
-               <module>springboot</module>
-       </modules>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>versions-maven-plugin</artifactId>
+                <version>2.5</version>
+                <configuration>
+                    <processAllModules>true</processAllModules>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <modules>
+        <module>standalone</module>
+        <module>odlparent</module>
+        <module>springboot</module>
+    </modules>
 
 </project>
diff --git a/standalone/pom.xml b/standalone/pom.xml
new file mode 100755 (executable)
index 0000000..1e68cdb
--- /dev/null
@@ -0,0 +1,189 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+
+       <modelVersion>4.0.0</modelVersion>
+       <packaging>pom</packaging>
+       <groupId>org.onap.ccsdk.parent</groupId>
+       <artifactId>standalone-parent</artifactId>
+       <version>1.3.0-SNAPSHOT</version>
+
+
+       <url>http://wiki.onap.org</url>
+       <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
+       <description>Root POM to be used in place of oparent for CCSDK based projects</description>
+
+       <parent>
+               <groupId>org.onap.oparent</groupId>
+               <artifactId>oparent</artifactId>
+               <version>2.0.0</version>
+       </parent>
+
+       <issueManagement>
+               <system>JIRA</system>
+               <url>https://jira.onap.org/</url>
+       </issueManagement>
+
+       <properties>
+
+
+               <!-- ONAP repositories -->
+               <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
+               <onap.nexus.host>nexus.onap.org</onap.nexus.host>
+               <onap.nexus.port>443</onap.nexus.port>
+               <onap.nexus.protocol>https</onap.nexus.protocol>
+               <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
+               <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
+               <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
+               <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
+               <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
+               <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
+
+
+               <java.version.source>1.8</java.version.source>
+               <java.version.target>1.8</java.version.target>
+               <bundle.plugin.version>2.5.0</bundle.plugin.version>
+               <checkstyle.skip>true</checkstyle.skip>
+
+
+               <sonar.language>java</sonar.language>
+               <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
+               <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
+               <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
+               <sonar.projectVersion>${project.version}</sonar.projectVersion>
+
+
+
+               <mariadb.connector.version>2.1.1</mariadb.connector.version>
+               <fasterxml.jackson.version>2.9.8</fasterxml.jackson.version>
+               <velocity.version>2.0</velocity.version>
+
+               <dmaap.listener.version>1.1.5</dmaap.listener.version>
+               <sdc.client.version>1.3.0</sdc.client.version>
+               <sdc.tosca.version>1.5.0</sdc.tosca.version>
+
+
+       </properties>
+
+       <dependencyManagement>
+               <dependencies>
+                       <dependency>
+                               <groupId>org.onap.sdc.sdc-distribution-client</groupId>
+                               <artifactId>sdc-distribution-client</artifactId>
+                               <version>${sdc.client.version}</version>
+                               <scope>compile</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.onap.sdc.sdc-tosca</groupId>
+                               <artifactId>sdc-tosca</artifactId>
+                               <version>${sdc.tosca.version}</version>
+                               <scope>compile</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
+                               <artifactId>dmaapClient</artifactId>
+                               <version>${dmaap.listener.version}</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.slf4j</groupId>
+                               <artifactId>slf4j-api</artifactId>
+                               <version>1.7.21</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.apache.logging.log4j</groupId>
+                               <artifactId>log4j-slf4j-impl</artifactId>
+                               <version>2.11.2</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>com.fasterxml.jackson.core</groupId>
+                               <artifactId>jackson-core</artifactId>
+                               <version>${fasterxml.jackson.version}</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>com.fasterxml.jackson.core</groupId>
+                               <artifactId>jackson-databind</artifactId>
+                               <version>${fasterxml.jackson.version}</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>com.fasterxml.jackson.core</groupId>
+                               <artifactId>jackson-annotations</artifactId>
+                               <version>${fasterxml.jackson.version}</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.apache.velocity</groupId>
+                               <artifactId>velocity-engine-core</artifactId>
+                               <version>${velocity.version}</version>
+                       </dependency>
+                       <dependency>
+                               <groupId>junit</groupId>
+                               <artifactId>junit</artifactId>
+                               <version>4.12</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.mockito</groupId>
+                               <artifactId>mockito-core</artifactId>
+                               <version>1.10.19</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.testng</groupId>
+                               <artifactId>testng</artifactId>
+                               <version>6.11</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>ch.vorburger.mariaDB4j</groupId>
+                               <artifactId>mariaDB4j</artifactId>
+                               <version>2.2.3</version>
+                               <scope>test</scope>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
+
+
+       <profiles>
+               <profile>
+                       <id>nexus-staging</id>
+                       <activation>
+                               <property>
+                                       <name>!altDeploymentRepository</name>
+                               </property>
+                       </activation>
+                       <build>
+                               <plugins>
+                                       <plugin>
+                                               <groupId>org.sonatype.plugins</groupId>
+                                               <artifactId>nexus-staging-maven-plugin</artifactId>
+                                               <version>1.6.7</version>
+                                               <extensions>true</extensions>
+                                               <configuration>
+                                                       <nexusUrl>https://${onap.nexus.host}</nexusUrl>
+                                                       <stagingProfileId>176c31dfe190a</stagingProfileId>
+                                                       <serverId>ecomp-staging</serverId>
+                                               </configuration>
+                                       </plugin>
+                               </plugins>
+                       </build>
+               </profile>
+       </profiles>
+
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>versions-maven-plugin</artifactId>
+                               <version>2.5</version>
+                               <configuration>
+                                       <processAllModules>true</processAllModules>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+       <organization>
+               <name>ONAP</name>
+       </organization>
+</project>