Decouple message bus from netconf connector
[controller.git] / opendaylight / md-sal / messagebus-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3 Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.\r
4 \r
5 This program and the accompanying materials are made available under the\r
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
7 and is available at http://www.eclipse.org/legal/epl-v10.html\r
8 -->\r
9 <project xmlns="http://maven.apache.org/POM/4.0.0"\r
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
12     <modelVersion>4.0.0</modelVersion>\r
13 \r
14     <parent>\r
15         <groupId>org.opendaylight.controller</groupId>\r
16         <artifactId>sal-parent</artifactId>\r
17         <version>1.3.0-SNAPSHOT</version>\r
18     </parent>\r
19 \r
20     <artifactId>messagebus-impl</artifactId>\r
21     <name>${project.artifactId}</name>\r
22 \r
23     <packaging>bundle</packaging>\r
24 \r
25     <dependencies>\r
26         <dependency>\r
27             <groupId>org.opendaylight.controller</groupId>\r
28             <artifactId>sal-binding-api</artifactId>\r
29         </dependency>\r
30         <dependency>\r
31             <groupId>org.opendaylight.controller</groupId>\r
32             <artifactId>sal-core-api</artifactId>\r
33         </dependency>\r
34         <dependency>\r
35             <groupId>org.opendaylight.controller</groupId>\r
36             <artifactId>sal-common-util</artifactId>\r
37         </dependency>\r
38         <dependency>\r
39             <groupId>org.opendaylight.yangtools</groupId>\r
40             <artifactId>yang-data-impl</artifactId>\r
41         </dependency>\r
42         <dependency>\r
43             <groupId>org.opendaylight.controller</groupId>\r
44             <artifactId>config-api</artifactId>\r
45         </dependency>\r
46         <dependency>\r
47             <groupId>org.opendaylight.controller</groupId>\r
48             <artifactId>messagebus-api</artifactId>\r
49         </dependency>\r
50         <dependency>\r
51             <groupId>org.opendaylight.controller</groupId>\r
52             <artifactId>messagebus-util</artifactId>\r
53         </dependency>\r
54         <dependency>\r
55             <groupId>org.opendaylight.controller</groupId>\r
56             <artifactId>messagebus-spi</artifactId>\r
57         </dependency>\r
58         <dependency>\r
59             <groupId>org.opendaylight.controller</groupId>\r
60             <artifactId>sal-binding-config</artifactId>\r
61         </dependency>\r
62 \r
63         <!-- Testing Dependencies -->\r
64         <dependency>\r
65               <groupId>junit</groupId>\r
66               <artifactId>junit</artifactId>\r
67               <scope>test</scope>\r
68         </dependency>\r
69         <dependency>\r
70               <groupId>org.glassfish.jersey.test-framework.providers</groupId>\r
71               <artifactId>jersey-test-framework-provider-grizzly2</artifactId>\r
72               <scope>test</scope>\r
73         </dependency>\r
74         <dependency>\r
75               <groupId>org.mockito</groupId>\r
76               <artifactId>mockito-all</artifactId>\r
77               <scope>test</scope>\r
78         </dependency>\r
79     </dependencies>\r
80 \r
81     <build>\r
82         <plugins>\r
83             <plugin>\r
84                 <groupId>org.opendaylight.yangtools</groupId>\r
85                 <artifactId>yang-maven-plugin</artifactId>\r
86                 <executions>\r
87                     <execution>\r
88                         <goals>\r
89                             <goal>generate-sources</goal>\r
90                         </goals>\r
91                         <configuration>\r
92                             <codeGenerators>\r
93                                 <generator>\r
94                                     <codeGeneratorClass>\r
95                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl\r
96                                     </codeGeneratorClass>\r
97                                     <outputBaseDir>\r
98                                         ${project.build.directory}/generated-sources/sal\r
99                                     </outputBaseDir>\r
100                                 </generator>\r
101                                 <generator>\r
102                                     <codeGeneratorClass>\r
103                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator\r
104                                     </codeGeneratorClass>\r
105                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>\r
106                                     <additionalConfiguration>\r
107                                         <namespaceToPackage1>\r
108                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang\r
109                                         </namespaceToPackage1>\r
110                                     </additionalConfiguration>\r
111                                 </generator>\r
112                                 <generator>\r
113                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>\r
114                                     <outputBaseDir>target/site/models</outputBaseDir>\r
115                                 </generator>\r
116                             </codeGenerators>\r
117                             <inspectDependencies>true</inspectDependencies>\r
118                         </configuration>\r
119                     </execution>\r
120                 </executions>\r
121             </plugin>\r
122             <plugin>\r
123                 <groupId>org.codehaus.mojo</groupId>\r
124                 <artifactId>build-helper-maven-plugin</artifactId>\r
125                 <executions>\r
126                     <execution>\r
127                         <id>add-source</id>\r
128                         <phase>generate-sources</phase>\r
129                         <goals>\r
130                             <goal>add-source</goal>\r
131                         </goals>\r
132                         <configuration>\r
133                             <sources>\r
134                                 <source>${project.build.directory}/generated-sources/config</source>\r
135                             </sources>\r
136                         </configuration>\r
137                     </execution>\r
138                 </executions>\r
139             </plugin>\r
140         </plugins>\r
141     </build>\r
142 </project>\r