1d740e2a4a98eab0ba8157cdc39aa7dec60afd9c
[yangtools.git] / yang / yang-data-jaxen / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4     Copyright (c) 2015 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"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.yangtools</groupId>
15         <artifactId>yangtools-parent</artifactId>
16         <version>0.8.0-Beryllium</version>
17         <relativePath>/../../common/parent/pom.xml</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>yang-data-jaxen</artifactId>
22     <name>${project.artifactId}</name>
23     <description>${project.artifactId}</description>
24     <packaging>bundle</packaging>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>yang-data-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>yang-data-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>yang-model-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>yang-parser-impl</artifactId>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>com.google.guava</groupId>
46             <artifactId>guava</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>jaxen</groupId>
50             <artifactId>jaxen</artifactId>
51             <version>1.1.6</version>
52         </dependency>
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.mockito</groupId>
60             <artifactId>mockito-core</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.slf4j</groupId>
64             <artifactId>slf4j-log4j12</artifactId>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68
69   <!--
70       Maven Site Configuration
71
72       The following configuration is necessary for maven-site-plugin to
73       correctly identify the correct deployment path for OpenDaylight Maven
74       sites.
75   -->
76   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
77
78   <distributionManagement>
79     <site>
80       <id>opendaylight-site</id>
81       <url>${nexus.site.url}/${project.artifactId}/</url>
82     </site>
83   </distributionManagement>
84 </project>