mdsal-replicate-netty
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-replicate-netty</artifactId> <version>14.0.16</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2020 PANTHEON.tech, s.r.o. 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.mdsal</groupId> <artifactId>bundle-parent</artifactId> <version>14.0.16</version> <relativePath>../../bundle-parent/pom.xml</relativePath> </parent> <artifactId>mdsal-replicate-netty</artifactId> <packaging>bundle</packaging> <properties> <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true --> <doclint>all,-missing</doclint> </properties> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-native-epoll</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-replicate-common</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-singleton-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-data-codec-binfmt</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.metatype.annotations</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-binding-dom-adapter</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-binding-test-utils</artifactId> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-eos-dom-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-singleton-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.mdsal.model</groupId> <artifactId>general-entity</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-artifacts</id> <goals> <goal>attach-artifact</goal> </goals> <phase>package</phase> <configuration> <artifacts> <artifact> <file>${project.build.directory}/classes/config/org.opendaylight.mdsal.replicate.netty.sink.cfg</file> <type>config</type> <classifier>sink</classifier> </artifact> <artifact> <file>${project.build.directory}/classes/config/org.opendaylight.mdsal.replicate.netty.source.cfg</file> <type>config</type> <classifier>source</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> <scm> <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection> <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection> <tag>HEAD</tag> <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url> </scm> </project>