summaryrefslogtreecommitdiffstats
path: root/opendaylight/aluminum/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-11-12 11:42:03 -0500
committerDan Timoney <dtimoney@att.com>2020-11-12 11:42:03 -0500
commitaf1e381905d099dd9454ab4bf4d6d965ef5d00dd (patch)
treeb90dff2af54f73672d0d6ed931e1c5d3ff7092c3 /opendaylight/aluminum/pom.xml
parentf471275bd9933cbb297e77f3ea224147daf00e44 (diff)
Create base ODL Aluminum docker container
Added new base docker container with OpenDaylight Aluminum installed Change-Id: I6b76e11803d89aba79e9f45f053cabd3e93fcff7 Issue-ID: CCSDK-2983 Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'opendaylight/aluminum/pom.xml')
-rw-r--r--opendaylight/aluminum/pom.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/opendaylight/aluminum/pom.xml b/opendaylight/aluminum/pom.xml
new file mode 100644
index 00000000..8f4167c8
--- /dev/null
+++ b/opendaylight/aluminum/pom.xml
@@ -0,0 +1,41 @@
+<?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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.onap.ccsdk.distribution</groupId>
+ <artifactId>distribution-opendaylight</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>distribution-odl-aluminum</artifactId>
+ <version>1.1.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>ccsdk-distribution :: opendaylight</name>
+ <description>Creates OpenDaylight container</description>
+
+ <properties>
+ <ccsdk.project.version>${project.version}</ccsdk.project.version>
+ <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
+ <ccsdk.opendaylight.version>0.13.1</ccsdk.opendaylight.version>
+ <docker.push.phase>deploy</docker.push.phase>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.opendaylight.integration</groupId>
+ <artifactId>onap-karaf</artifactId>
+ <version>${ccsdk.opendaylight.version}</version>
+ <type>tar.gz</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+
+
+ <modules>
+ <module>aluminum-alpine</module>
+ </modules>
+</project>