Remove superfluous version/groupId declarations
[netconf.git] / netconf / netconf-client / 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>2.0.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-client</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-netty-util</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.google.guava</groupId>
38       <artifactId>guava</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>mockito-configuration</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>netconf-util</artifactId>
51       <type>test-jar</type>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <artifactId>maven-jar-plugin</artifactId>
60         <executions>
61           <execution>
62             <goals>
63               <goal>test-jar</goal>
64             </goals>
65           </execution>
66         </executions>
67       </plugin>
68       <plugin>
69         <artifactId>maven-source-plugin</artifactId>
70         <executions>
71           <execution>
72             <goals>
73               <goal>test-jar-no-fork</goal>
74             </goals>
75           </execution>
76         </executions>
77       </plugin>
78     </plugins>
79   </build>
80
81 </project>