43e0c9aa2995a69ffd69ac69d572ce63cb232560
[netconf.git] / netconf / netconf-util / 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.9.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-util</artifactId>
21   <version>1.9.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <!-- compile dependencies -->
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>netconf-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>netconf-mapping-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.google.guava</groupId>
37       <artifactId>guava</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>io.netty</groupId>
41       <artifactId>netty-handler</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>slf4j-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>mockito-configuration</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-model-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>yang-data-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>yang-data-impl</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>yang-data-codec-xml</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.osgi</groupId>
69       <artifactId>osgi.cmpn</artifactId>
70     </dependency>
71
72     <dependency>
73       <groupId>org.xmlunit</groupId>
74       <artifactId>xmlunit-legacy</artifactId>
75       <scope>test</scope>
76     </dependency>
77    <dependency>
78       <groupId>org.opendaylight.mdsal</groupId>
79       <artifactId>mdsal-binding-generator-impl</artifactId>
80       <scope>test</scope>
81     </dependency>
82    <dependency>
83       <groupId>org.opendaylight.mdsal</groupId>
84       <artifactId>mdsal-binding-runtime-spi</artifactId>
85       <scope>test</scope>
86     </dependency>
87   </dependencies>
88
89   <build>
90     <plugins>
91       <plugin>
92         <groupId>org.apache.felix</groupId>
93         <artifactId>maven-bundle-plugin</artifactId>
94       </plugin>
95       <plugin>
96         <groupId>org.codehaus.mojo</groupId>
97         <artifactId>build-helper-maven-plugin</artifactId>
98         <executions>
99           <execution>
100             <id>attach-artifacts</id>
101             <goals>
102               <goal>attach-artifact</goal>
103             </goals>
104             <phase>package</phase>
105             <configuration>
106               <artifacts>
107                 <artifact>
108                   <file>${project.build.directory}/classes/netconf.cfg</file>
109                   <type>cfg</type>
110                   <classifier>config</classifier>
111                 </artifact>
112               </artifacts>
113             </configuration>
114           </execution>
115         </executions>
116       </plugin>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-jar-plugin</artifactId>
120         <executions>
121           <execution>
122             <goals>
123               <goal>test-jar</goal>
124             </goals>
125             <phase>package</phase>
126           </execution>
127         </executions>
128       </plugin>
129     </plugins>
130   </build>
131
132 </project>