Merge "BUG 2954 : Thread local DocumentBuilder's for XmlUtil"
[controller.git] / opendaylight / netconf / netconf-impl / 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.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-impl</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>ietf-netconf-monitoring</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>ietf-netconf-monitoring-extension</artifactId>
22     </dependency>
23     <!-- compile dependencies -->
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-mapping-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-netty-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>netconf-util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.google.guava</groupId>
42       <artifactId>guava</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>commons.logback_settings</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>config-util</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>protocol-framework</artifactId>
55     </dependency>
56     <!-- test dependencies -->
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>mockito-configuration</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.opendaylight.yangtools.model</groupId>
64       <artifactId>ietf-inet-types</artifactId>
65     </dependency>
66
67     <dependency>
68       <groupId>org.osgi</groupId>
69       <artifactId>org.osgi.core</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.slf4j</groupId>
73       <artifactId>slf4j-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>netconf-client</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>netconf-client</artifactId>
83       <type>test-jar</type>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>netconf-util</artifactId>
89       <type>test-jar</type>
90       <scope>test</scope>
91     </dependency>
92
93     <dependency>
94       <groupId>xmlunit</groupId>
95       <artifactId>xmlunit</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.apache.felix</groupId>
104         <artifactId>maven-bundle-plugin</artifactId>
105         <configuration>
106           <instructions>
107             <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
108             <Export-Package>org.opendaylight.controller.netconf.impl.*</Export-Package>
109           </instructions>
110         </configuration>
111       </plugin>
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-jar-plugin</artifactId>
115         <executions>
116           <execution>
117             <goals>
118               <goal>test-jar</goal>
119             </goals>
120             <phase>package</phase>
121           </execution>
122         </executions>
123       </plugin>
124         <plugin>
125             <groupId>org.opendaylight.yangtools</groupId>
126             <artifactId>yang-maven-plugin</artifactId>
127             <executions>
128                 <execution>
129                     <id>config</id>
130                     <goals>
131                         <goal>generate-sources</goal>
132                     </goals>
133                     <configuration>
134                         <codeGenerators>
135                             <generator>
136                                 <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
137                                 <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
138                                 <additionalConfiguration>
139                                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
140                                 </additionalConfiguration>
141                             </generator>
142                             <generator>
143                                 <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
144                                 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
145                             </generator>
146                         </codeGenerators>
147                         <inspectDependencies>true</inspectDependencies>
148                     </configuration>
149                 </execution>
150             </executions>
151             <dependencies>
152                 <dependency>
153                     <groupId>org.opendaylight.controller</groupId>
154                     <artifactId>yang-jmx-generator-plugin</artifactId>
155                     <version>${config.version}</version>
156                 </dependency>
157             </dependencies>
158         </plugin>
159     </plugins>
160   </build>
161
162 </project>