Bump versions by x.y.(z+1)
[netconf.git] / netconf / netconf-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>1.5.4-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-impl</artifactId>
21   <version>1.5.4-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>config-artifacts</artifactId>
30         <version>0.9.4-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>ietf-netconf-monitoring</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>ietf-netconf-monitoring-extension</artifactId>
45     </dependency>
46     <!-- compile dependencies -->
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>netconf-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-mapping-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-notifications-api</artifactId>
58     </dependency>
59     <dependency>
60        <groupId>${project.groupId}</groupId>
61        <artifactId>netconf-notifications-impl</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-netty-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>threadpool-config-api</artifactId>
78     </dependency>
79     <!-- test dependencies -->
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>mockito-configuration</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>org.slf4j</groupId>
87       <artifactId>slf4j-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.slf4j</groupId>
91       <artifactId>slf4j-simple</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>netconf-client</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>netconf-client</artifactId>
102       <type>test-jar</type>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>netconf-util</artifactId>
108       <type>test-jar</type>
109       <scope>test</scope>
110     </dependency>
111
112     <dependency>
113       <groupId>xmlunit</groupId>
114       <artifactId>xmlunit</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.osgi</groupId>
119       <artifactId>org.osgi.compendium</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.osgi</groupId>
123       <artifactId>org.osgi.core</artifactId>
124     </dependency>
125   </dependencies>
126
127   <build>
128     <plugins>
129       <plugin>
130         <groupId>org.apache.felix</groupId>
131         <artifactId>maven-bundle-plugin</artifactId>
132         <configuration>
133           <instructions>
134             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
135             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
136           </instructions>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-jar-plugin</artifactId>
142         <executions>
143           <execution>
144             <goals>
145               <goal>test-jar</goal>
146             </goals>
147             <phase>package</phase>
148           </execution>
149         </executions>
150       </plugin>
151     </plugins>
152   </build>
153
154 </project>