Remove opendaylight directory
[netconf.git] / 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" 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>config-parent</artifactId>
8     <version>0.5.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.netconf</groupId>
13   <artifactId>netconf-impl</artifactId>
14   <version>1.1.0-SNAPSHOT</version>
15   <name>${project.artifactId}</name>
16   <packaging>bundle</packaging>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.netconf</groupId>
22         <artifactId>netconf-subsystem</artifactId>
23         <version>${project.version}</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29
30   <dependencies>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>ietf-netconf-monitoring</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>ietf-netconf-monitoring-extension</artifactId>
38     </dependency>
39     <!-- compile dependencies -->
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>netconf-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>netconf-mapping-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>netconf-notifications-api</artifactId>
51     </dependency>
52     <dependency>
53        <groupId>${project.groupId}</groupId>
54        <artifactId>netconf-notifications-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>netconf-netty-util</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>netconf-util</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>config-util</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>protocol-framework</artifactId>
75     </dependency>
76     <!-- test dependencies -->
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>mockito-configuration</artifactId>
80     </dependency>
81
82     <dependency>
83       <groupId>org.opendaylight.mdsal.model</groupId>
84       <artifactId>ietf-inet-types</artifactId>
85     </dependency>
86
87     <dependency>
88       <groupId>org.slf4j</groupId>
89       <artifactId>slf4j-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>${project.groupId}</groupId>
93       <artifactId>netconf-client</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>netconf-client</artifactId>
99       <type>test-jar</type>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>netconf-util</artifactId>
105       <type>test-jar</type>
106       <scope>test</scope>
107     </dependency>
108
109     <dependency>
110       <groupId>xmlunit</groupId>
111       <artifactId>xmlunit</artifactId>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115
116   <build>
117     <plugins>
118       <plugin>
119         <groupId>org.apache.felix</groupId>
120         <artifactId>maven-bundle-plugin</artifactId>
121         <configuration>
122           <instructions>
123             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
124             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
125           </instructions>
126         </configuration>
127       </plugin>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-jar-plugin</artifactId>
131         <executions>
132           <execution>
133             <goals>
134               <goal>test-jar</goal>
135             </goals>
136             <phase>package</phase>
137           </execution>
138         </executions>
139       </plugin>
140     </plugins>
141   </build>
142
143 </project>