sal-broker-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-broker-impl</artifactId> <version>1.11.3</version> </dependency>
<?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.opendaylight.controller</groupId> <artifactId>mdsal-parent</artifactId> <version>1.11.3</version> <relativePath>../parent</relativePath> </parent> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-broker-impl</artifactId> <version>1.11.3</version> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>com.lmax</groupId> <artifactId>disruptor</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-eos-dom-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-dom-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-dom-broker</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-common-impl</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-common-util</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-core-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-core-spi</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-core-compat</artifactId> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>util</artifactId> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-data-impl</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>mockito-configuration</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-test-util</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-inmemory-datastore</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name> <Export-Package> <!-- Legacy code --> org.opendaylight.controller.sal.dom.broker, org.opendaylight.controller.sal.dom.broker.impl, org.opendaylight.controller.sal.dom.broker.util, org.opendaylight.controller.sal.dom.broker.spi, <!--sal.broker.impl is exported for sal-netconf-connector to use SchemaAwareRpcRegistry.--> <!-- TODO Remove sal.broker.impl from export when SchemaAwareRpcRegistry is not used in connector anymore --> org.opendaylight.controller.md.sal.dom.broker.impl, org.opendaylight.controller.md.sal.dom.broker.impl.*, org.opendaylight.controller.md.sal.dom.clustering.impl, </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection> <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection> <tag>HEAD</tag> <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url> </scm> </project>