Declare commons-io version
[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             <scope>test</scope>
72         </dependency>
73
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76
77             <artifactId>yang-store-api</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>xmlunit</groupId>
82             <artifactId>xmlunit</artifactId>
83             <version>1.4</version>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>netconf-util</artifactId>
89             <version>${project.version}</version>
90             <scope>test</scope>
91             <type>test-jar</type>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>netconf-client</artifactId>
96             <version>${project.version}</version>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.felix</groupId>
105                 <artifactId>maven-bundle-plugin</artifactId>
106                 <configuration>
107                     <instructions>
108                         <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
109                         <Import-Package>
110                             com.google.common.base,
111                             com.google.common.collect,
112                             io.netty.channel,
113                             io.netty.channel.socket,
114                             io.netty.util,
115                             io.netty.util.concurrent,
116                             javax.management,
117                             javax.net.ssl,
118                             javax.xml.namespace,
119                             javax.xml.xpath,
120                             org.opendaylight.controller.netconf.api,
121                             org.opendaylight.controller.netconf.api.jmx,
122                             org.opendaylight.controller.netconf.mapping.api,
123                             org.opendaylight.controller.netconf.util,
124                             org.opendaylight.controller.netconf.util.mapping,
125                             org.opendaylight.controller.netconf.util.osgi,
126                             org.opendaylight.controller.netconf.util.xml,
127                             org.opendaylight.protocol.framework,
128                             org.osgi.framework,
129                             org.osgi.util.tracker,
130                             org.slf4j,
131                             org.w3c.dom,
132                             org.xml.sax,
133                             org.opendaylight.controller.netconf.util.messages,
134                             org.opendaylight.controller.config.stat
135                         </Import-Package>
136                     </instructions>
137                 </configuration>
138             </plugin>
139             <plugin>
140                 <groupId>org.apache.maven.plugins</groupId>
141                 <artifactId>maven-jar-plugin</artifactId>
142                 <version>2.4</version>
143             </plugin>
144         </plugins>
145     </build>
146
147
148 </project>