Release Carbon
[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.4-Carbon</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.4-Carbon</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.4-Carbon</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.4-Carbon</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-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding2-generator-impl</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding2-runtime</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-data-impl</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding2-generator-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-binding2-test-model</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>mdsal-dom-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.apache.commons</groupId>
81             <artifactId>commons-lang3</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>com.google.guava</groupId>
85             <artifactId>guava</artifactId>
86         </dependency>
87         <dependency><groupId>junit</groupId>
88             <artifactId>junit</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>mockito-configuration</artifactId>
94             <scope>test</scope>
95         </dependency>
96     </dependencies>
97
98     <build>
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.felix</groupId>
102                 <artifactId>maven-bundle-plugin</artifactId>
103                 <extensions>true</extensions>
104                 <configuration>
105                     <instructions>
106                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
107                         <Export-Package>
108                             org.opendaylight.mdsal.binding2.dom.codec.*
109                         </Export-Package>
110                     </instructions>
111                 </configuration>
112             </plugin>
113         </plugins>
114     </build>
115
116     <!--
117         Maven Site Configuration
118
119         The following configuration is necessary for maven-site-plugin to
120         correctly identify the correct deployment path for OpenDaylight Maven
121         sites.
122     -->
123     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
124
125     <distributionManagement>
126         <site>
127             <id>opendaylight-site</id>
128             <url>${nexus.site.url}/${project.artifactId}/</url>
129         </site>
130     </distributionManagement>
131
132 </project>