a58c584dd4977c3eadb9838f16f1bac2059b6d0a
[mdsal.git] / replicate / mdsal-replicate-netty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>13.0.0-SNAPSHOT</version>
16         <relativePath>../../bundle-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-replicate-netty</artifactId>
20     <packaging>bundle</packaging>
21
22     <properties>
23         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
24         <doclint>all,-missing</doclint>
25     </properties>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.opendaylight.mdsal</groupId>
30             <artifactId>mdsal-replicate-common</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.mdsal</groupId>
34             <artifactId>mdsal-singleton-common-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>yang-data-codec-binfmt</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>io.netty</groupId>
42             <artifactId>netty-handler</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>io.netty</groupId>
46             <artifactId>netty-transport</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>io.netty</groupId>
50             <artifactId>netty-transport-native-epoll</artifactId>
51             <optional>true</optional>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.service.component.annotations</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.service.metatype.annotations</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding-dom-adapter</artifactId>
65             <type>test-jar</type>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding-test-utils</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.mdsal</groupId>
73             <artifactId>mdsal-eos-dom-simple</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.mdsal</groupId>
78             <artifactId>mdsal-singleton-dom-impl</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal.model</groupId>
83             <artifactId>general-entity</artifactId>
84             <scope>test</scope>
85         </dependency>
86     </dependencies>
87
88     <build>
89         <plugins>
90             <plugin>
91                 <groupId>org.codehaus.mojo</groupId>
92                 <artifactId>build-helper-maven-plugin</artifactId>
93                 <executions>
94                     <execution>
95                         <id>attach-artifacts</id>
96                         <goals>
97                             <goal>attach-artifact</goal>
98                         </goals>
99                         <phase>package</phase>
100                         <configuration>
101                             <artifacts>
102                                 <artifact>
103                                     <file>${project.build.directory}/classes/config/org.opendaylight.mdsal.replicate.netty.sink.cfg</file>
104                                     <type>config</type>
105                                     <classifier>sink</classifier>
106                                 </artifact>
107                                 <artifact>
108                                     <file>${project.build.directory}/classes/config/org.opendaylight.mdsal.replicate.netty.source.cfg</file>
109                                     <type>config</type>
110                                     <classifier>source</classifier>
111                                 </artifact>
112                             </artifacts>
113                         </configuration>
114                     </execution>
115                 </executions>
116             </plugin>
117         </plugins>
118     </build>
119     <scm>
120         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
121         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
122         <tag>HEAD</tag>
123         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
124     </scm>
125 </project>