8fe3aded1c21f3040765db9f3bbd025ebc911bd4
[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     <parent>
11         <groupId>org.opendaylight.odlparent</groupId>
12         <artifactId>bundle-parent</artifactId>
13         <version>3.1.7</version>
14         <relativePath/>
15     </parent>
16
17     <modelVersion>4.0.0</modelVersion>
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>mdsal-binding2-dom-codec</artifactId>
20     <version>0.13.3-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.mdsal</groupId>
27                 <artifactId>mdsal-artifacts</artifactId>
28                 <version>2.5.3-SNAPSHOT</version>
29                 <type>pom</type>
30                 <scope>import</scope>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yangtools-artifacts</artifactId>
35                 <version>2.0.20</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41
42     <dependencies>
43         <dependency>
44             <groupId>org.javassist</groupId>
45             <artifactId>javassist</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-binding2-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-binding2-generator-impl</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>mdsal-binding2-runtime</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>yang-data-impl</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding2-generator-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding2-test-model</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-dom-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.commons</groupId>
78             <artifactId>commons-lang3</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>com.google.guava</groupId>
82             <artifactId>guava</artifactId>
83         </dependency>
84         <dependency><groupId>junit</groupId>
85             <artifactId>junit</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>mockito-configuration</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.felix</groupId>
99                 <artifactId>maven-bundle-plugin</artifactId>
100                 <extensions>true</extensions>
101                 <configuration>
102                     <instructions>
103                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
104                         <Export-Package>
105                             org.opendaylight.mdsal.binding2.dom.codec.*,
106                             org.opendaylight.yangtools.binding.data.codec.*,
107                             org.opendaylight.yangtools.binding.data.codec.gen.impl.*,
108                             org.opendaylight.yangtools.binding.data.codec.impl.*,
109                             ;-split-package:=error
110                         </Export-Package>
111                     </instructions>
112                 </configuration>
113             </plugin>
114             <plugin>
115                 <groupId>org.apache.maven.plugins</groupId>
116                 <artifactId>maven-checkstyle-plugin</artifactId>
117                 <configuration>
118                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
119                 </configuration>
120             </plugin>
121         </plugins>
122     </build>
123 </project>