Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[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
25    <!-- Migrated to odlparent -->
26    <distributionManagement>
27      <relocation>
28        <groupId>org.opendaylight.odlparent</groupId>
29        <artifactId>features-test</artifactId>
30        <version>1.5.0-SNAPSHOT</version>
31        <message>This artifact has been migrated to odlparent and will be removed in Lithium release</message>
32      </relocation>
33    </distributionManagement>
34
35    <dependencies>
36      <!-- Dependencies for pax exam karaf container -->
37
38      <dependency>
39          <groupId>org.ops4j.pax.exam</groupId>
40          <artifactId>pax-exam-container-karaf</artifactId>
41          <version>${pax.exam.version}</version>
42          <scope>compile</scope>
43      </dependency>
44      <dependency>
45          <groupId>org.ops4j.pax.exam</groupId>
46          <artifactId>pax-exam-junit4</artifactId>
47          <version>${pax.exam.version}</version>
48          <scope>compile</scope>
49      </dependency>
50      <dependency>
51          <groupId>org.ops4j.pax.exam</groupId>
52          <artifactId>pax-exam</artifactId>
53          <version>${pax.exam.version}</version>
54          <scope>compile</scope>
55      </dependency>
56      <dependency>
57          <groupId>org.ops4j.pax.url</groupId>
58          <artifactId>pax-url-aether</artifactId>
59          <scope>compile</scope>
60      </dependency>
61      <dependency>
62          <groupId>javax.inject</groupId>
63          <artifactId>javax.inject</artifactId>
64          <version>1</version>
65          <scope>compile</scope>
66      </dependency>
67       <dependency>
68          <groupId>org.apache.karaf.features</groupId>
69          <artifactId>org.apache.karaf.features.core</artifactId>
70          <version>${karaf.version}</version>
71          <scope>compile</scope>
72      </dependency>
73      <dependency>
74         <groupId>org.osgi</groupId>
75         <artifactId>org.osgi.core</artifactId>
76         <scope>compile</scope>
77      </dependency>
78      <dependency>
79          <groupId>junit</groupId>
80          <artifactId>junit</artifactId>
81          <scope>compile</scope>
82      </dependency>
83      <dependency>
84          <groupId>commons-io</groupId>
85          <artifactId>commons-io</artifactId>
86          <scope>compile</scope>
87      </dependency>
88      <dependency>
89        <groupId>org.apache.karaf.tooling</groupId>
90        <artifactId>karaf-maven-plugin</artifactId>
91        <version>${karaf.version}</version>
92       </dependency>
93    </dependencies>
94    <build>
95      <plugins>
96         <plugin>
97            <groupId>org.apache.felix</groupId>
98            <artifactId>maven-bundle-plugin</artifactId>
99          </plugin>
100      </plugins>
101    </build>
102 </project>