diff options
author | Dan Timoney <dtimoney@att.com> | 2023-01-03 07:05:53 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-01-03 07:06:04 -0500 |
commit | d3ef2d11a5521a4dcb765f5d4a112f10d7bf3051 (patch) | |
tree | 2029d531848fb0abc5c2bdca9f00ae7515b5c8b5 /opendaylight/chlorine/pom.xml | |
parent | e5043d4e249a672540f773d8758e78e7ae404984 (diff) |
Create base Chlorine docker image
Create base docker image for ODL Chlorine release. Also, remove
code to create Phosphorus docker image, which is not needed
in London ONAP release.
Issue-ID: CCSDK-3829
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I026f68bebfd3063d0ecb69c7b9cd7bf3e3a79d13
Diffstat (limited to 'opendaylight/chlorine/pom.xml')
-rw-r--r-- | opendaylight/chlorine/pom.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/opendaylight/chlorine/pom.xml b/opendaylight/chlorine/pom.xml new file mode 100644 index 00000000..0378b16d --- /dev/null +++ b/opendaylight/chlorine/pom.xml @@ -0,0 +1,35 @@ +<?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.5.0-SNAPSHOT</version> + </parent> + + <artifactId>distribution-odl-chlorine</artifactId> + <packaging>pom</packaging> + + <name>ccsdk-distribution :: opendaylight :: chlorine</name> + <description>Creates OpenDaylight container</description> + + <modules> + <module>chlorine-alpine</module> + </modules> + + <properties> + <ccsdk.opendaylight.version>0.17.1</ccsdk.opendaylight.version> + </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> +</project> |