Merge "Refactor LeaderElectionScenarioTests"
[controller.git] / opendaylight / netconf / netconf-util / 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>netconf-util</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>netconf-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>${project.groupId}</groupId>
22       <artifactId>netconf-mapping-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>io.netty</groupId>
30       <artifactId>netty-handler</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>config-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.osgi</groupId>
38       <artifactId>org.osgi.core</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>xmlunit</groupId>
46       <artifactId>xmlunit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>mockito-configuration</artifactId>
52     </dependency>
53   <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-model-api</artifactId>
56   </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <configuration>
65           <instructions>
66             <Export-Package>org.opendaylight.controller.netconf.util.*</Export-Package>
67           </instructions>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-jar-plugin</artifactId>
73         <executions>
74           <execution>
75             <goals>
76               <goal>test-jar</goal>
77             </goals>
78             <phase>package</phase>
79           </execution>
80         </executions>
81       </plugin>
82     </plugins>
83   </build>
84
85 </project>