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