Fix warnings in poms - duplicate and incorrect dependencies
[controller.git] / opendaylight / netconf / netconf-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <parent>
6         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.1-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>netconf-impl</artifactId>
12     <name>${project.artifactId}</name>
13     <packaging>bundle</packaging>
14
15
16     <dependencies>
17         <!-- compile dependencies -->
18         <dependency>
19             <groupId>${project.groupId}</groupId>
20             <artifactId>netconf-api</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>netconf-util</artifactId>
26             <version>${project.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>config-util</artifactId>
31             <version>0.2.1-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>netconf-mapping-api</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.bgpcep</groupId>
41             <artifactId>util</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.bgpcep</groupId>
46             <artifactId>framework</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.osgi</groupId>
51             <artifactId>org.osgi.core</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.google.guava</groupId>
55             <artifactId>guava</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.slf4j</groupId>
59             <artifactId>slf4j-api</artifactId>
60         </dependency>
61
62         <!-- test dependencies -->
63         <dependency>
64             <groupId>org.opendaylight.bgpcep</groupId>
65             <artifactId>mockito-configuration</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>commons-io</groupId>
70             <artifactId>commons-io</artifactId>
71             <version>2.4</version>
72             <scope>test</scope>
73         </dependency>
74
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77
78             <artifactId>yang-store-api</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>xmlunit</groupId>
83             <artifactId>xmlunit</artifactId>
84             <version>1.4</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>netconf-util</artifactId>
90             <version>${project.version}</version>
91             <scope>test</scope>
92             <type>test-jar</type>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>netconf-client</artifactId>
97             <version>${project.version}</version>
98             <scope>test</scope>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.felix</groupId>
106                 <artifactId>maven-bundle-plugin</artifactId>
107                 <configuration>
108                     <instructions>
109                         <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
110                         <Import-Package>
111                             com.google.common.base,
112                             com.google.common.collect,
113                             io.netty.channel,
114                             io.netty.channel.socket,
115                             io.netty.util,
116                             io.netty.util.concurrent,
117                             javax.management,
118                             javax.net.ssl,
119                             javax.xml.namespace,
120                             javax.xml.xpath,
121                             org.opendaylight.controller.netconf.api,
122                             org.opendaylight.controller.netconf.api.jmx,
123                             org.opendaylight.controller.netconf.mapping.api,
124                             org.opendaylight.controller.netconf.util,
125                             org.opendaylight.controller.netconf.util.mapping,
126                             org.opendaylight.controller.netconf.util.osgi,
127                             org.opendaylight.controller.netconf.util.xml,
128                             org.opendaylight.protocol.framework,
129                             org.osgi.framework,
130                             org.osgi.util.tracker,
131                             org.slf4j,
132                             org.w3c.dom,
133                             org.xml.sax,
134                             org.opendaylight.controller.netconf.util.messages,
135                             org.opendaylight.controller.config.stat
136                         </Import-Package>
137                     </instructions>
138                 </configuration>
139             </plugin>
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-jar-plugin</artifactId>
143                 <version>2.4</version>
144             </plugin>
145         </plugins>
146     </build>
147
148
149 </project>