Binding v2 runtime - refactor - part1
[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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>1.8.1-SNAPSHOT</version>
17         <relativePath/>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <groupId>org.opendaylight.mdsal</groupId>
22     <artifactId>mdsal-binding2-dom-codec</artifactId>
23     <version>0.10.1-SNAPSHOT</version>
24     <packaging>bundle</packaging>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.mdsal</groupId>
30                 <artifactId>mdsal-artifacts</artifactId>
31                 <version>2.2.1-SNAPSHOT</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yangtools-artifacts</artifactId>
38                 <version>1.1.1-SNAPSHOT</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.javassist</groupId>
48             <artifactId>javassist</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding2-generator-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding2-runtime</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-data-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding2-generator-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding2-test-model</artifactId>
69             <scope>test</scope>
70         </dependency>
71
72         <dependency>
73             <groupId>org.apache.commons</groupId>
74             <artifactId>commons-lang3</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>com.google.guava</groupId>
78             <artifactId>guava</artifactId>
79         </dependency>
80         <dependency><groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>mockito-configuration</artifactId>
87             <scope>test</scope>
88         </dependency>
89     </dependencies>
90
91     <build>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.felix</groupId>
95                 <artifactId>maven-bundle-plugin</artifactId>
96                 <extensions>true</extensions>
97                 <configuration>
98                     <instructions>
99                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
100                         <Export-Package>
101                             org.opendaylight.mdsal.binding2.dom.codec.*,
102                             org.opendaylight.yangtools.binding.data.codec.*,
103                             org.opendaylight.yangtools.binding.data.codec.gen.impl.*,
104                             org.opendaylight.yangtools.binding.data.codec.impl.*,
105                         </Export-Package>
106                     </instructions>
107                 </configuration>
108             </plugin>
109         </plugins>
110     </build>
111
112     <!--
113         Maven Site Configuration
114
115         The following configuration is necessary for maven-site-plugin to
116         correctly identify the correct deployment path for OpenDaylight Maven
117         sites.
118     -->
119     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
120
121     <distributionManagement>
122         <site>
123             <id>opendaylight-site</id>
124             <url>${nexus.site.url}/${project.artifactId}/</url>
125         </site>
126     </distributionManagement>
127
128 </project>