Release odlparent
[odlparent.git] / karaf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright © 2014, 2017 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>13.0.9</version>
17         <relativePath>../bundle-parent</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>karaf-util</artifactId>
22     <packaging>bundle</packaging>
23     <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.apache.karaf.deployer</groupId>
28             <artifactId>org.apache.karaf.deployer.blueprint</artifactId>
29             <version>${karaf.version}</version>
30             <scope>compile</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.apache.karaf.deployer</groupId>
34             <artifactId>org.apache.karaf.deployer.features</artifactId>
35             <version>${karaf.version}</version>
36             <scope>compile</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.maven.wagon</groupId>
40             <artifactId>wagon-http</artifactId>
41             <version>3.2.0</version>
42             <scope>compile</scope>
43             <exclusions>
44               <exclusion>
45                 <!-- because it conflicts with org.slf4j:jcl-over-slf4j -->
46                 <groupId>commons-logging</groupId>
47                 <artifactId>commons-logging</artifactId>
48               </exclusion>
49             </exclusions>
50         </dependency>
51         <dependency>
52             <groupId>org.ops4j.pax.url</groupId>
53             <artifactId>pax-url-wrap</artifactId>
54             <scope>compile</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.osgi</groupId>
58             <artifactId>org.osgi.service.url</artifactId>
59             <scope>compile</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.ops4j.pax.url</groupId>
63             <artifactId>pax-url-aether</artifactId>
64             <scope>compile</scope>
65         </dependency>
66     </dependencies>
67
68     <build>
69         <plugins>
70             <plugin>
71                 <artifactId>maven-checkstyle-plugin</artifactId>
72                 <executions>
73                     <execution>
74                         <id>check-license</id>
75                         <configuration>
76                             <excludes>
77                                 <!-- Skip Apache Licensed files -->
78                                 org/opendaylight/odlparent/karafutil/CustomBundleUrlStreamHandlerFactory.java
79                             </excludes>
80                         </configuration>
81                     </execution>
82                 </executions>
83             </plugin>
84         </plugins>
85     </build>
86
87 </project>