diff options
author | Patrick Brady <pb071s@att.com> | 2018-03-22 15:12:48 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-04-11 17:42:20 +0000 |
commit | 5b81764739425ccb4a418947e1565a7f691f4204 (patch) | |
tree | 245b7d69f2bc2c093c88bc9fb3c2c3757468e9c1 /pom.xml | |
parent | abd3c649e4e50d9e1e995f81cb080e470eb02b48 (diff) |
ODL Upgrade Method 2
Changes necessary to support upgrade to ODL Nitrogen,
while continuing to use Karaf 3 style features
Change-Id: I2edf619e0b889420c32793b958c0926b0311e71d
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-403
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 37 |
1 files changed, 35 insertions, 2 deletions
@@ -24,8 +24,8 @@ limitations under the License. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>odlparent-carbon-sr1</artifactId> - <version>0.1.0</version> + <artifactId>odlparent</artifactId> + <version>1.0.1-SNAPSHOT</version> </parent> @@ -84,6 +84,22 @@ limitations under the License. <!-- <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath> --> <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + + <sdnctl.dblib.version>0.2.1-SNAPSHOT</sdnctl.dblib.version> + <sdnctl.sli.version>0.2.1-SNAPSHOT</sdnctl.sli.version> + <ccsdk.sli.adaptors.version>0.2.1-SNAPSHOT</ccsdk.sli.adaptors.version> + <commons.collections.version>3.2.2</commons.collections.version> + <odl.sal.api.gen.plugin.version>0.11.1</odl.sal.api.gen.plugin.version> + <odl.yangtools.version>1.2.1</odl.yangtools.version> + <odl.mdsal.yang.binding.version>0.11.1</odl.mdsal.yang.binding.version> + <odl.mdsal.version>1.6.1</odl.mdsal.version> + <odl.mdsal.features.version>2.3.1</odl.mdsal.features.version> + <odl.yang.jmx.generator.version>0.7.1</odl.yang.jmx.generator.version> + <odl.ietf-yang-types.version>2010.09.24.11.1</odl.ietf-yang-types.version> + <odl.ietf-inet-types.version>2010.09.24.11.1</odl.ietf-inet-types.version> + <odl.controller.config.api.version>0.7.1</odl.controller.config.api.version> + <odl.commons.opendaylight.version>2.0.5</odl.commons.opendaylight.version> + <odl.karaf.empty.distro.version>1.8.3-Carbon</odl.karaf.empty.distro.version> </properties> @@ -182,6 +198,17 @@ limitations under the License. <!-- ================================================================================== --> <dependencyManagement> <dependencies> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>22.0</version> + </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava-testlib</artifactId> + <version>22.0</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>config-api</artifactId> @@ -414,6 +441,12 @@ limitations under the License. </dependency> </dependencies> </dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + </dependency> + </dependencies> <!-- ================================================================================== --> |