636d9424be8114f98189bea969b54c6cf3bf519f
[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.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>2.0.5</version>
17         <relativePath/>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <groupId>org.opendaylight.yangtools</groupId>
22     <artifactId>yang-data-jaxen</artifactId>
23     <version>2.0.0-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25     <description>${project.artifactId}</description>
26     <packaging>bundle</packaging>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.yangtools</groupId>
32                 <artifactId>yangtools-artifacts</artifactId>
33                 <version>2.0.0-SNAPSHOT</version>
34                 <scope>import</scope>
35                 <type>pom</type>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <dependencies>
41         <dependency>
42             <groupId>com.google.guava</groupId>
43             <artifactId>guava</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>jaxen</groupId>
47             <artifactId>jaxen</artifactId>
48             <version>1.1.6</version>
49         </dependency>
50
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>yang-data-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>yang-model-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>yang-model-util</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>yang-test-util</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>yang-data-impl</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-log4j12</artifactId>
85             <scope>test</scope>
86         </dependency>
87     </dependencies>
88
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-checkstyle-plugin</artifactId>
94                 <configuration>
95                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
96                 </configuration>
97             </plugin>
98         </plugins>
99     </build>
100
101     <!--
102         Maven Site Configuration
103
104         The following configuration is necessary for maven-site-plugin to
105         correctly identify the correct deployment path for OpenDaylight Maven
106         sites.
107     -->
108     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
109
110     <distributionManagement>
111         <site>
112             <id>opendaylight-site</id>
113             <url>${nexus.site.url}/${project.artifactId}/</url>
114         </site>
115     </distributionManagement>
116 </project>