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