Remove opendaylight directory
[netconf.git] / netconf / netconf-monitoring / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>bundle-parent</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.netconf</groupId>
13   <artifactId>netconf-monitoring</artifactId>
14   <version>1.1.0-SNAPSHOT</version>
15   <name>${project.artifactId}</name>
16   <packaging>bundle</packaging>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.netconf</groupId>
22         <artifactId>netconf-subsystem</artifactId>
23         <version>${project.version}</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
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>${project.groupId}</groupId>
42       <artifactId>netconf-util</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>com.google.guava</groupId>
47       <artifactId>guava</artifactId>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>mockito-configuration</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.model</groupId>
56       <artifactId>ietf-inet-types</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <configuration>
70           <instructions>
71             <Bundle-Activator>org.opendaylight.netconf.monitoring.osgi.NetconfMonitoringActivator</Bundle-Activator>
72           </instructions>
73         </configuration>
74       </plugin>
75     </plugins>
76   </build>
77
78 </project>