diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-06-09 12:14:54 -0400 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-06-14 14:03:25 +0000 |
commit | 94a7c372094fb6c8f342dfd04984a34c975eb849 (patch) | |
tree | 59374117a3786da069a28daa1488cf6dd73f52f0 /opendaylight/silicon/pom.xml | |
parent | fff64f89ef68f9f6a31d462507495115b81c04f9 (diff) |
Making changes as per SILICON ODL
Adding few dependencies and refactoring sli versioning
Issue-ID: CCSDK-3331
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: I9678e4b4401791a98499ab3c39ef5b24e404aea8
Diffstat (limited to 'opendaylight/silicon/pom.xml')
-rw-r--r-- | opendaylight/silicon/pom.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/opendaylight/silicon/pom.xml b/opendaylight/silicon/pom.xml new file mode 100644 index 00000000..45107bf0 --- /dev/null +++ b/opendaylight/silicon/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.2.0-SNAPSHOT</version> + </parent> + + <artifactId>distribution-odl-silicon</artifactId> + <packaging>pom</packaging> + + <name>ccsdk-distribution :: opendaylight :: silicon</name> + <description>Creates OpenDaylight container</description> + + <modules> + <module>silicon-alpine</module> + </modules> + + <properties> + <ccsdk.opendaylight.version>0.14.0</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> |