Merge "Remove <Embed-Dependency> in netconf-config pom"
[netconf.git] / netconf / config-netconf-connector / 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>2.0.2</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>config-netconf-connector</artifactId>
21   <version>1.3.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>org.opendaylight.controller</groupId>
41       <artifactId>config-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>config-manager-facade-xml</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>config-util</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-impl</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>netconf-mapping-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-notifications-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>yang-jmx-generator</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>com.google.guava</groupId>
77       <artifactId>guava</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>mockito-configuration</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.mdsal</groupId>
85       <artifactId>mdsal-binding-generator-impl</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.slf4j</groupId>
89       <artifactId>slf4j-api</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-simple</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>xmlunit</groupId>
97       <artifactId>xmlunit</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>config-manager</artifactId>
102       <type>test-jar</type>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>config-manager</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.yangtools</groupId>
112       <artifactId>yang-test-util</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>netconf-util</artifactId>
117       <type>test-jar</type>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>yang-test</artifactId>
123       <scope>test</scope>
124     </dependency>
125   </dependencies>
126
127   <build>
128     <plugins>
129       <plugin>
130         <groupId>org.apache.felix</groupId>
131         <artifactId>maven-bundle-plugin</artifactId>
132         <configuration>
133           <instructions>
134             <Bundle-Activator>org.opendaylight.netconf.confignetconfconnector.osgi.Activator</Bundle-Activator>
135           </instructions>
136         </configuration>
137       </plugin>
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-checkstyle-plugin</artifactId>
141         <configuration>
142           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143         </configuration>
144       </plugin>
145     </plugins>
146   </build>
147
148 </project>