Merge "Added configuration modules and closeable wrappers for FixedThreadPool, Flexib...
[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                         <Export-package>
81                             org.opendaylight.controller.sal.binding.spi.*,
82                         </Export-package>
83                         <Private-Package>
84                             org.opendaylight.controller.config.yang.md.sal.binding.impl,
85                             org.opendaylight.controller.sal.binding.impl,
86                             org.opendaylight.controller.sal.binding.impl.*,
87                             org.opendaylight.controller.sal.binding.codegen,
88                             org.opendaylight.controller.sal.binding.codegen.*,
89                         </Private-Package>
90                     </instructions>
91                 </configuration>
92             </plugin>
93             <plugin>
94                 <groupId>org.eclipse.xtend</groupId>
95                 <artifactId>xtend-maven-plugin</artifactId>
96             </plugin>
97             <plugin>
98                 <artifactId>maven-clean-plugin</artifactId>
99             </plugin>
100             <plugin>
101                 <groupId>org.jacoco</groupId>
102                 <artifactId>jacoco-maven-plugin</artifactId>
103                 <configuration>
104                     <includes>org.opendaylight.controller.*</includes>
105                 </configuration>
106                 <executions>
107                     <execution>
108                         <id>pre-test</id>
109                         <goals>
110                             <goal>prepare-agent</goal>
111                         </goals>
112                     </execution>
113                     <execution>
114                         <id>post-test</id>
115                         <phase>test</phase>
116                         <goals>
117                             <goal>report</goal>
118                         </goals>
119                     </execution>
120                 </executions>
121             </plugin>
122         </plugins>
123     </build>
124
125     <dependencies>
126         <dependency>
127             <groupId>org.opendaylight.controller</groupId>
128             <artifactId>sal-common-util</artifactId>
129             <version>1.0-SNAPSHOT</version>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.controller</groupId>
133             <artifactId>sal-common-impl</artifactId>
134             <version>1.0-SNAPSHOT</version>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.controller</groupId>
138             <artifactId>sal-binding-api</artifactId>
139             <version>1.0-SNAPSHOT</version>
140         </dependency>
141         <dependency>
142             <groupId>org.slf4j</groupId>
143             <artifactId>slf4j-api</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>org.osgi</groupId>
147             <artifactId>org.osgi.core</artifactId>
148             <version>${osgi.core.version}</version>
149         </dependency>
150         <dependency>
151             <groupId>com.google.guava</groupId>
152             <artifactId>guava</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.reflections</groupId>
156             <artifactId>reflections</artifactId>
157             <version>0.9.9-RC1</version>
158         </dependency>
159         <dependency>
160             <groupId>org.javassist</groupId>
161             <artifactId>javassist</artifactId>
162             <version>3.17.1-GA</version>
163         </dependency>
164         <dependency>
165             <groupId>junit</groupId>
166             <artifactId>junit</artifactId>
167             <scope>test</scope>
168         </dependency>
169         <dependency>
170             <groupId>org.mockito</groupId>
171             <artifactId>mockito-all</artifactId>
172             <scope>test</scope>
173         </dependency>
174         <dependency>
175             <groupId>org.eclipse.xtend</groupId>
176             <artifactId>org.eclipse.xtend.lib</artifactId>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.controller</groupId>
180             <artifactId>sal-binding-config</artifactId>
181             <version>1.0-SNAPSHOT</version>
182         </dependency>
183     </dependencies>
184 </project>