Merge "Do not duplicate OSGi dependencyManagement"
[controller.git] / opendaylight / netconf / config-netconf-connector / 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" 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     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>config-netconf-connector</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
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>config-util</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-mapping-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-notifications-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>netconf-util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>yang-jmx-generator</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>com.google.guava</groupId>
46       <artifactId>guava</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>commons.logback_settings</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>mockito-configuration</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>xmlunit</groupId>
66       <artifactId>xmlunit</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>config-manager</artifactId>
71       <type>test-jar</type>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>config-manager</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>netconf-impl</artifactId>
82       <scope>test</scope>
83     </dependency>
84
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>netconf-util</artifactId>
88       <type>test-jar</type>
89       <scope>test</scope>
90     </dependency>
91
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>yang-test</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <configuration>
105           <instructions>
106             <Bundle-Activator>org.opendaylight.controller.netconf.confignetconfconnector.osgi.Activator</Bundle-Activator>
107             <Private-Package>org.opendaylight.controller.netconf.confignetconfconnector.mapping.*,
108                             org.opendaylight.controller.netconf.confignetconfconnector.operations.*,
109                             org.opendaylight.controller.netconf.confignetconfconnector.transactions,
110                             org.opendaylight.controller.netconf.confignetconfconnector.util,
111                             org.opendaylight.controller.netconf.confignetconfconnector.osgi,
112                             org.opendaylight.controller.netconf.confignetconfconnector.exception,</Private-Package>
113           </instructions>
114         </configuration>
115       </plugin>
116     </plugins>
117   </build>
118
119 </project>