odl-distribution-version
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.integration</groupId> <artifactId>odl-distribution-version</artifactId> <version>0.8.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2017 Cisco Systems, Inc. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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.opendaylight.odlparent</groupId> <artifactId>single-feature-parent</artifactId> <version>3.1.4</version> <relativePath/> </parent> <groupId>org.opendaylight.integration</groupId> <artifactId>odl-distribution-version</artifactId> <version>0.8.4</version> <packaging>feature</packaging> <!-- <name> formatting is used by autorelease to parse and notify projects on build failure. Please do not modify this unless you have a good reason. --> <name>ODL :: integration :: ${project.artifactId}</name> <description>Single feature for Version functionality.</description> <url>https://wiki.opendaylight.org/view/Integration/Distribution</url> <licenses> <license> <name>Eclipse Public License v1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <!-- FIXME: Add developers section --> <scm> <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection> <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection> <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=features/singles/odl-distribution-version;hb=HEAD</url> <tag>HEAD</tag> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>all-artifacts</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Version module jar and config. --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>version</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>version</artifactId> <type>xml</type> <classifier>config</classifier> </dependency> <!-- External single feature dependencies. --> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>odl-config-persister</artifactId> <!-- This pulls in both config-api and yang-common --> <type>xml</type> <classifier>features</classifier> </dependency> <!-- Additional dependencies are needed because config-parent also requires sal-binding-config bundle. --> <dependency> <groupId>org.opendaylight.controller</groupId> <!-- This is an overkill, but odl-mdsal-broker-local is the only feature which contains sal-binding-config bundle, and odl-mdsal-broker is its nearest ancestor tested to not fail SingleFeatureTest (others are blacklisted in feature-test so SFT is skipped and they would cause SFT failure here). --> <artifactId>odl-mdsal-broker</artifactId> <type>xml</type> <classifier>features</classifier> </dependency> </dependencies> </project>