Bump versions to 2.0.3-SNAPSHOT
[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>3.0.2</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.3-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.3-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>org.kohsuke.metainf-services</groupId>
66             <artifactId>metainf-services</artifactId>
67             <scope>provided</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>org.osgi.core</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>yang-test-util</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>yang-data-impl</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>junit</groupId>
85             <artifactId>junit</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.mockito</groupId>
90             <artifactId>mockito-core</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.slf4j</groupId>
94             <artifactId>slf4j-log4j12</artifactId>
95             <scope>test</scope>
96         </dependency>
97     </dependencies>
98
99     <build>
100         <plugins>
101             <plugin>
102                 <groupId>org.apache.felix</groupId>
103                 <artifactId>maven-bundle-plugin</artifactId>
104                 <extensions>true</extensions>
105                 <configuration>
106                     <instructions>
107                         <Include-Resource>{META-INF/services=${project.build.directory}/classes/META-INF/services}</Include-Resource>
108                     </instructions>
109                 </configuration>
110             </plugin>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-checkstyle-plugin</artifactId>
114                 <configuration>
115                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
116                 </configuration>
117             </plugin>
118         </plugins>
119     </build>
120
121 </project>