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