Add missing copyright to pom files
[netconf.git] / netconf / netconf-monitoring / 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.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-monitoring</artifactId>
21   <version>1.2.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
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>${project.groupId}</groupId>
41       <artifactId>netconf-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>netconf-mapping-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>netconf-util</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>com.google.guava</groupId>
54       <artifactId>guava</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>mockito-configuration</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal.model</groupId>
63       <artifactId>ietf-inet-types-2013-07-15</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>slf4j-api</artifactId>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <configuration>
77           <instructions>
78             <Bundle-Activator>org.opendaylight.netconf.monitoring.osgi.NetconfMonitoringActivator</Bundle-Activator>
79           </instructions>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84
85 </project>