59e546a84baf0d4248be7eec4b0bbecc2a848a3d
[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.mdsal</groupId>
14         <artifactId>mdsal-binding</artifactId>
15         <version>0.9.4-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>mdsal-binding-dom-codec</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.javassist</groupId>
24             <artifactId>javassist</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.mdsal</groupId>
28             <artifactId>mdsal-binding-generator-impl</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-parser-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-data-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal</groupId>
40             <artifactId>mdsal-binding-generator-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.google.code.findbugs</groupId>
44             <artifactId>jsr305</artifactId>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-binding-test-model</artifactId>
50             <scope>test</scope>
51         </dependency>
52
53         <dependency>
54             <groupId>org.apache.commons</groupId>
55             <artifactId>commons-lang3</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>com.google.guava</groupId>
59             <artifactId>guava</artifactId>
60         </dependency>
61             <dependency><groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>mockito-configuration</artifactId>
68             <scope>test</scope>
69         </dependency>
70     </dependencies>
71
72     <build>
73         <plugins>
74             <plugin>
75                 <artifactId>maven-jar-plugin</artifactId>
76             </plugin>
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.binding.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                         </Export-Package>
90                     </instructions>
91                 </configuration>
92             </plugin>
93         </plugins>
94     </build>
95
96   <!--
97       Maven Site Configuration
98
99       The following configuration is necessary for maven-site-plugin to
100       correctly identify the correct deployment path for OpenDaylight Maven
101       sites.
102   -->
103   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
104
105   <distributionManagement>
106     <site>
107       <id>opendaylight-site</id>
108       <url>${nexus.site.url}/${project.artifactId}/</url>
109     </site>
110   </distributionManagement>
111
112 </project>