Added Inventory Reader for SwitchManager
[controller.git] / opendaylight / md-sal / sal-binding-broker / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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     <parent>
5         <groupId>org.opendaylight.controller</groupId>
6         <artifactId>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-broker-impl</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15     </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.opendaylight.yangtools</groupId>
21                 <artifactId>yang-maven-plugin</artifactId>
22                 <version>0.5.9-SNAPSHOT</version>
23                 <executions>
24                     <execution>
25                         <goals>
26                             <goal>generate-sources</goal>
27                         </goals>
28                         <configuration>
29                             <codeGenerators>
30                                 <generator>
31                                     <codeGeneratorClass>
32                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
33                                     </codeGeneratorClass>
34                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
35                                     <additionalConfiguration>
36                                         <namespaceToPackage1>
37                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
38                                         </namespaceToPackage1>
39                                     </additionalConfiguration>
40                                 </generator>
41                             </codeGenerators>
42                             <inspectDependencies>true</inspectDependencies>
43                         </configuration>
44                     </execution>
45                 </executions>
46                 <dependencies>
47                     <dependency>
48                         <groupId>org.opendaylight.controller</groupId>
49                         <artifactId>yang-jmx-generator-plugin</artifactId>
50                         <version>0.2.2-SNAPSHOT</version>
51                     </dependency>
52                 </dependencies>
53             </plugin>
54             <plugin>
55                 <groupId>org.codehaus.mojo</groupId>
56                 <artifactId>build-helper-maven-plugin</artifactId>
57                 <version>1.8</version>
58                 <executions>
59                     <execution>
60                         <id>add-source</id>
61                         <phase>generate-sources</phase>
62                         <goals>
63                             <goal>add-source</goal>
64                         </goals>
65                         <configuration>
66                             <sources>
67                                 <source>${project.build.directory}/generated-sources/config</source>
68                             </sources>
69                         </configuration>
70                     </execution>
71                 </executions>
72             </plugin>
73             <plugin>
74                 <groupId>org.apache.felix</groupId>
75                 <artifactId>maven-bundle-plugin</artifactId>
76                 <extensions>true</extensions>
77                 <configuration>
78                     <instructions>
79                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
80                         <Private-Package>
81                             org.opendaylight.controller.config.yang.md.sal.binding.impl,
82                             org.opendaylight.controller.sal.binding.spi,
83                             org.opendaylight.controller.sal.binding.spi.*,
84                             org.opendaylight.controller.sal.binding.impl,
85                             org.opendaylight.controller.sal.binding.impl.*,
86                             org.opendaylight.controller.sal.binding.codegen.*,
87                         </Private-Package>
88                     </instructions>
89                 </configuration>
90             </plugin>
91             <plugin>
92                 <groupId>org.eclipse.xtend</groupId>
93                 <artifactId>xtend-maven-plugin</artifactId>
94             </plugin>
95             <plugin>
96                 <artifactId>maven-clean-plugin</artifactId>
97             </plugin>
98             <plugin>
99                 <groupId>org.jacoco</groupId>
100                 <artifactId>jacoco-maven-plugin</artifactId>
101                 <configuration>
102                     <includes>org.opendaylight.controller.*</includes>
103                 </configuration>
104                 <executions>
105                     <execution>
106                         <id>pre-test</id>
107                         <goals>
108                             <goal>prepare-agent</goal>
109                         </goals>
110                     </execution>
111                     <execution>
112                         <id>post-test</id>
113                         <phase>test</phase>
114                         <goals>
115                             <goal>report</goal>
116                         </goals>
117                     </execution>
118                 </executions>
119             </plugin>
120         </plugins>
121     </build>
122
123     <dependencies>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>sal-common-util</artifactId>
127             <version>1.0-SNAPSHOT</version>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>sal-common-impl</artifactId>
132             <version>1.0-SNAPSHOT</version>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>sal-binding-api</artifactId>
137             <version>1.0-SNAPSHOT</version>
138         </dependency>
139         <dependency>
140             <groupId>org.slf4j</groupId>
141             <artifactId>slf4j-api</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>org.osgi</groupId>
145             <artifactId>org.osgi.core</artifactId>
146             <version>${osgi.core.version}</version>
147         </dependency>
148         <dependency>
149             <groupId>com.google.guava</groupId>
150             <artifactId>guava</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>org.reflections</groupId>
154             <artifactId>reflections</artifactId>
155             <version>0.9.9-RC1</version>
156         </dependency>
157         <dependency>
158             <groupId>org.javassist</groupId>
159             <artifactId>javassist</artifactId>
160             <version>3.17.1-GA</version>
161         </dependency>
162         <dependency>
163             <groupId>junit</groupId>
164             <artifactId>junit</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>org.mockito</groupId>
169             <artifactId>mockito-all</artifactId>
170             <scope>test</scope>
171         </dependency>
172         <dependency>
173             <groupId>org.eclipse.xtend</groupId>
174             <artifactId>org.eclipse.xtend.lib</artifactId>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>sal-binding-config</artifactId>
179             <version>1.0-SNAPSHOT</version>
180         </dependency>
181     </dependencies>
182 </project>