Use dom-parent internally
[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.1-SNAPSHOT</version>
15         <relativePath>../../dom/dom-parent</relativePath>
16     </parent>
17
18     <artifactId>mdsal-binding2-dom-codec</artifactId>
19     <version>0.15.1-SNAPSHOT</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><groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>mockito-configuration</artifactId>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.felix</groupId>
79                 <artifactId>maven-bundle-plugin</artifactId>
80                 <extensions>true</extensions>
81                 <configuration>
82                     <instructions>
83                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
84                         <Export-Package>
85                             org.opendaylight.mdsal.binding2.dom.codec.*,
86                             org.opendaylight.yangtools.binding.data.codec.*,
87                             org.opendaylight.yangtools.binding.data.codec.gen.impl.*,
88                             org.opendaylight.yangtools.binding.data.codec.impl.*,
89                             ;-split-package:=error
90                         </Export-Package>
91                     </instructions>
92                 </configuration>
93             </plugin>
94             <plugin>
95                 <groupId>org.apache.maven.plugins</groupId>
96                 <artifactId>maven-checkstyle-plugin</artifactId>
97                 <configuration>
98                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
99                 </configuration>
100             </plugin>
101         </plugins>
102     </build>
103 </project>