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