Bumping versions by 0.0.1 for next dev cycle
[netconf.git] / 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.odlparent</groupId>
7     <artifactId>bundle-parent</artifactId>
8     <version>1.7.1-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.netconf</groupId>
13   <artifactId>netconf-util</artifactId>
14   <version>1.1.1-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-parent</artifactId>
23         <version>${project.version}</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-subsystem</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <!-- compile dependencies -->
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>config-manager-facade-xml</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>netconf-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>netconf-mapping-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.google.guava</groupId>
53       <artifactId>guava</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>io.netty</groupId>
57       <artifactId>netty-handler</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>config-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.slf4j</groupId>
65       <artifactId>slf4j-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>xmlunit</groupId>
69       <artifactId>xmlunit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>mockito-configuration</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-model-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>yang-data-api</artifactId>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-jar-plugin</artifactId>
91         <executions>
92           <execution>
93             <goals>
94               <goal>test-jar</goal>
95             </goals>
96             <phase>package</phase>
97           </execution>
98         </executions>
99       </plugin>
100     </plugins>
101   </build>
102
103 </project>