diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-11-07 09:21:08 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-11-10 10:00:39 +0100 |
commit | 0f92e8f1eb7ec29f589ed92c55b049f13cce0f30 (patch) | |
tree | 30e7fa6562a136755f1e5a9e5348db51c221f59b /common/honeycomb-parent | |
parent | cccd174ab736465bc36faacfeaa30297acb724a7 (diff) |
HONEYCOMB-385: bump ODL dependencies to Nitrogen
* guava bumped to 22.0 (same as used by ODL)
* use 4K RSA for SSH server (related to bouncy-castle bump in ODL)
- based on https://git.opendaylight.org/gerrit/#/c/60138/2
- also fixes HC2VPP-207
* removed some yang models from netconf-whitelist.xml,
that are no longer present in ODL dependencies,
* increased timeouts in distro tests, because generating 4K RSA key
my last longer (especially on slow jenkins nodes).
* EmptyMountPointService exposed to enable reuse by notification
and restconf providers
Change-Id: I2ff32bd7f0298716210fcfee4918007a42fab171
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'common/honeycomb-parent')
-rw-r--r-- | common/honeycomb-parent/pom.xml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/common/honeycomb-parent/pom.xml b/common/honeycomb-parent/pom.xml index 8f38eb9c6..0e8e52755 100644 --- a/common/honeycomb-parent/pom.xml +++ b/common/honeycomb-parent/pom.xml @@ -46,21 +46,21 @@ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- ODL dependencies --> - <yangtools.version>1.1.2-Carbon</yangtools.version> - <mdsal.version>2.2.2-Carbon</mdsal.version> - <mdsal.controller.version>1.5.2-Carbon</mdsal.controller.version> - <mdsalmodel.version>0.10.2-Carbon</mdsalmodel.version> - <netconf.version>1.2.2-Carbon</netconf.version> - <restconf.version>1.5.2-Carbon</restconf.version> - <salGenerator.version>0.10.2-Carbon</salGenerator.version> - <bgpcep.version>0.7.2-Carbon</bgpcep.version> + <odl.yangtools.version>1.2.0</odl.yangtools.version> + <odl.mdsal.version>2.3.0</odl.mdsal.version> + <odl.mdsal.controller.version>1.6.0</odl.mdsal.controller.version> + <odl.mdsalmodel.version>0.11.0</odl.mdsalmodel.version> + <odl.netconf.version>1.3.0</odl.netconf.version> + <odl.restconf.version>1.6.0</odl.restconf.version> + <odl.salGenerator.version>0.11.0</odl.salGenerator.version> + <odl.bgpcep.version>0.8.0</odl.bgpcep.version> <salGeneratorPath>target/generated-sources/mdsal-binding</salGeneratorPath> <!-- common dependencies --> <junit.version>4.11</junit.version> <mockito.version>2.2.9</mockito.version> <hamcrest.version>1.3</hamcrest.version> - <guava.version>18.0</guava.version> + <guava.version>22.0</guava.version> <jsr305.version>3.0.0</jsr305.version> <slf4j.version>1.7.21</slf4j.version> @@ -133,49 +133,49 @@ <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yangtools-artifacts</artifactId> - <version>${yangtools.version}</version> + <version>${odl.yangtools.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>mdsal-artifacts</artifactId> - <version>${mdsal.controller.version}</version> + <version>${odl.mdsal.controller.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-artifacts</artifactId> - <version>${mdsal.version}</version> + <version>${odl.mdsal.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.netconf</groupId> <artifactId>netconf-artifacts</artifactId> - <version>${netconf.version}</version> + <version>${odl.netconf.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.netconf</groupId> <artifactId>restconf-artifacts</artifactId> - <version>${restconf.version}</version> + <version>${odl.restconf.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.mdsal.model</groupId> <artifactId>mdsal-model-artifacts</artifactId> - <version>${mdsalmodel.version}</version> + <version>${odl.mdsalmodel.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.opendaylight.bgpcep</groupId> <artifactId>bgpcep-artifacts</artifactId> - <version>${bgpcep.version}</version> + <version>${odl.bgpcep.version}</version> <type>pom</type> <scope>import</scope> </dependency> @@ -295,7 +295,7 @@ <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>checkstyle-logging</artifactId> - <version>${yangtools.version}</version> + <version>${odl.yangtools.version}</version> </dependency> <!-- Needed by ODL's checkstyle-logging --> <dependency> |