Release mdsal
[mdsal.git] / binding2 / mdsal-binding2-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) 2016 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>3.0.7</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-binding2-generator-impl</artifactId>
20     <version>0.15.7</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-parser-impl</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-data-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-test-util</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding2-generator-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-binding2-generator-util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-binding2-util</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.google.guava</groupId>
55             <artifactId>guava</artifactId>
56         </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.felix</groupId>
63                 <artifactId>maven-bundle-plugin</artifactId>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
68                         <Export-Package>
69                             {local-packages},
70                             org.opendaylight.mdsal.binding2.generator.impl,
71                             ;-split-package:=error
72                         </Export-Package>
73                         <Import-Package>
74                             !javax.annotation,
75                             *
76                         </Import-Package>
77                     </instructions>
78                 </configuration>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.maven.plugins</groupId>
82                 <artifactId>maven-checkstyle-plugin</artifactId>
83                 <configuration>
84                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89 </project>