Bump versions to 4.0.10-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-generator-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>4.0.10-SNAPSHOT</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-binding-generator-impl</artifactId>
20     <version>2.0.10-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.javassist</groupId>
26             <artifactId>javassist</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>yang-data-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-parser-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-binding-generator-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding-generator-util</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>mockito-configuration</artifactId>
49         </dependency>
50
51         <dependency>
52             <groupId>com.google.guava</groupId>
53             <artifactId>guava</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>yang-test-util</artifactId>
58         </dependency>
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <extensions>true</extensions>
67                 <configuration>
68                     <instructions>
69                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70                         <Export-Package>
71                             {local-packages},
72                             org.opendaylight.mdsal.binding.generator.impl,
73                             ;-split-package:=error
74                         </Export-Package>
75                     </instructions>
76                 </configuration>
77             </plugin>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-checkstyle-plugin</artifactId>
81                 <configuration>
82                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
83                 </configuration>
84             </plugin>
85             <plugin>
86                 <groupId>com.github.spotbugs</groupId>
87                 <artifactId>spotbugs-maven-plugin</artifactId>
88                 <configuration>
89                     <failOnError>true</failOnError>
90                 </configuration>
91             </plugin>
92         </plugins>
93     </build>
94 </project>