Release Oxygen
[controller.git] / opendaylight / config / config-it-base / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.8.0</version>
16     <relativePath>../config-parent</relativePath>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>config-it-base</artifactId>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <opendaylight.karaf.version>3.0.2</opendaylight.karaf.version>
24   </properties>
25
26   <dependencyManagement>
27     <dependencies>
28       <dependency>
29         <groupId>org.opendaylight.controller</groupId>
30         <artifactId>config-artifacts</artifactId>
31         <version>${project.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35     </dependencies>
36   </dependencyManagement>
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>config-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.odlparent</groupId>
44       <artifactId>opendaylight-karaf-empty</artifactId>
45       <version>${opendaylight.karaf.version}</version>
46       <type>zip</type>
47     </dependency>
48
49     <!-- Dependencies for pax exam karaf container -->
50     <dependency>
51       <groupId>org.ops4j.pax.exam</groupId>
52       <artifactId>pax-exam-container-karaf</artifactId>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.ops4j.pax.exam</groupId>
57       <artifactId>pax-exam-junit4</artifactId>
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.ops4j.pax.exam</groupId>
62       <artifactId>pax-exam</artifactId>
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.ops4j.pax.url</groupId>
67       <artifactId>pax-url-aether</artifactId>
68       <scope>compile</scope>
69     </dependency>
70     <dependency>
71       <groupId>javax.inject</groupId>
72       <artifactId>javax.inject</artifactId>
73       <scope>compile</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.apache.karaf.features</groupId>
77       <artifactId>org.apache.karaf.features.core</artifactId>
78       <version>${karaf.version}</version>
79       <scope>compile</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.osgi</groupId>
83       <artifactId>org.osgi.core</artifactId>
84       <scope>compile</scope>
85     </dependency>
86     <dependency>
87       <groupId>junit</groupId>
88       <artifactId>junit</artifactId>
89       <scope>compile</scope>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-checkstyle-plugin</artifactId>
98         <configuration>
99           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
100         </configuration>
101       </plugin>
102     </plugins>
103     <resources>
104       <resource>
105         <directory>src/main/resources</directory>
106         <filtering>true</filtering>
107       </resource>
108     </resources>
109   </build>
110 </project>