Merge "Organize Import to conform to Checkstyle guidelines."
[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     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>threadpool-config-api</artifactId>
79     </dependency>
80     <!-- test dependencies -->
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>mockito-configuration</artifactId>
84     </dependency>
85
86     <dependency>
87       <groupId>org.opendaylight.mdsal.model</groupId>
88       <artifactId>ietf-inet-types-2013-07-15</artifactId>
89     </dependency>
90
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-api</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.slf4j</groupId>
97       <artifactId>slf4j-simple</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>netconf-client</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>netconf-client</artifactId>
108       <type>test-jar</type>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>netconf-util</artifactId>
114       <type>test-jar</type>
115       <scope>test</scope>
116     </dependency>
117
118     <dependency>
119       <groupId>xmlunit</groupId>
120       <artifactId>xmlunit</artifactId>
121       <scope>test</scope>
122     </dependency>
123   </dependencies>
124
125   <build>
126     <plugins>
127       <plugin>
128         <groupId>org.apache.felix</groupId>
129         <artifactId>maven-bundle-plugin</artifactId>
130         <configuration>
131           <instructions>
132             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
133             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
134           </instructions>
135         </configuration>
136       </plugin>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-jar-plugin</artifactId>
140         <executions>
141           <execution>
142             <goals>
143               <goal>test-jar</goal>
144             </goals>
145             <phase>package</phase>
146           </execution>
147         </executions>
148       </plugin>
149     </plugins>
150   </build>
151
152 </project>