Bump versions to 6.0.9-SNAPSHOT
[yangtools.git] / attic / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>6.0.9-SNAPSHOT</version>
16         <relativePath>../../bundle-parent</relativePath>
17     </parent>
18
19     <artifactId>yang-data-jaxen</artifactId>
20     <name>${project.artifactId}</name>
21     <description>${project.artifactId}</description>
22     <packaging>bundle</packaging>
23
24     <properties>
25         <!-- FIXME: we have some violations here -->
26         <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
27     </properties>
28
29     <dependencies>
30         <dependency>
31             <groupId>com.google.guava</groupId>
32             <artifactId>guava</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>jaxen</groupId>
36             <artifactId>jaxen</artifactId>
37             <version>1.1.6</version>
38         </dependency>
39
40         <dependency>
41             <groupId>org.opendaylight.yangtools</groupId>
42             <artifactId>yang-data-xpath-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>yang-data-util</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>yang-model-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-model-util</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>org.kohsuke.metainf-services</groupId>
59             <artifactId>metainf-services</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>com.guicedee.services</groupId>
63             <artifactId>javax.inject</artifactId>
64             <optional>true</optional>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.service.component.annotations</artifactId>
69         </dependency>
70
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-test-util</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.yangtools</groupId>
78             <artifactId>yang-data-impl</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82
83     <build>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.felix</groupId>
87                 <artifactId>maven-bundle-plugin</artifactId>
88                 <extensions>true</extensions>
89                 <configuration>
90                     <instructions>
91                         <Automatic-Module-Name>org.opendaylight.yangtools.yang.data.jaxen</Automatic-Module-Name>
92                     </instructions>
93                 </configuration>
94             </plugin>
95         </plugins>
96     </build>
97
98 </project>