Bump versions for Lithium
[yangtools.git] / common / features-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 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    <modelVersion>4.0.0</modelVersion>
13    <parent>
14       <groupId>org.opendaylight.yangtools</groupId>
15       <artifactId>yangtools-parent</artifactId>
16       <version>0.7.0-SNAPSHOT</version>
17       <relativePath>../parent/pom.xml</relativePath>
18    </parent>
19    <artifactId>features-test</artifactId>
20    <packaging>bundle</packaging>
21    <properties>
22       <pax.exam.version>3.5.0</pax.exam.version>
23    </properties>
24    <dependencies>
25      <!-- Dependencies for pax exam karaf container -->
26
27      <dependency>
28          <groupId>org.ops4j.pax.exam</groupId>
29          <artifactId>pax-exam-container-karaf</artifactId>
30          <version>${pax.exam.version}</version>
31          <scope>compile</scope>
32      </dependency>
33      <dependency>
34          <groupId>org.ops4j.pax.exam</groupId>
35          <artifactId>pax-exam-junit4</artifactId>
36          <version>${pax.exam.version}</version>
37          <scope>compile</scope>
38      </dependency>
39      <dependency>
40          <groupId>org.ops4j.pax.exam</groupId>
41          <artifactId>pax-exam</artifactId>
42          <version>${pax.exam.version}</version>
43          <scope>compile</scope>
44      </dependency>
45      <dependency>
46          <groupId>org.ops4j.pax.url</groupId>
47          <artifactId>pax-url-aether</artifactId>
48          <scope>compile</scope>
49      </dependency>
50      <dependency>
51          <groupId>javax.inject</groupId>
52          <artifactId>javax.inject</artifactId>
53          <version>1</version>
54          <scope>compile</scope>
55      </dependency>
56       <dependency>
57          <groupId>org.apache.karaf.features</groupId>
58          <artifactId>org.apache.karaf.features.core</artifactId>
59          <version>${karaf.version}</version>
60          <scope>compile</scope>
61      </dependency>
62      <dependency>
63         <groupId>org.osgi</groupId>
64         <artifactId>org.osgi.core</artifactId>
65         <scope>compile</scope>
66      </dependency>
67      <dependency>
68          <groupId>junit</groupId>
69          <artifactId>junit</artifactId>
70          <scope>compile</scope>
71      </dependency>
72      <dependency>
73          <groupId>commons-io</groupId>
74          <artifactId>commons-io</artifactId>
75          <scope>compile</scope>
76      </dependency>
77      <dependency>
78        <groupId>org.apache.karaf.tooling</groupId>
79        <artifactId>karaf-maven-plugin</artifactId>
80        <version>${karaf.version}</version>
81       </dependency>
82    </dependencies>
83    <build>
84      <plugins>
85         <plugin>
86            <groupId>org.apache.felix</groupId>
87            <artifactId>maven-bundle-plugin</artifactId>
88          </plugin>
89      </plugins>
90    </build>
91 </project>