Remove opendaylight-karaf-empty scope=provided
[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>2.0.4-SNAPSHOT</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>2.10</version>
42             <scope>compile</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.ops4j.pax.url</groupId>
46             <artifactId>pax-url-wrap</artifactId>
47             <scope>compile</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.osgi</groupId>
51             <artifactId>org.osgi.core</artifactId>
52             <scope>compile</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.ops4j.pax.url</groupId>
56             <artifactId>pax-url-aether</artifactId>
57             <scope>compile</scope>
58         </dependency>
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <artifactId>maven-checkstyle-plugin</artifactId>
65                 <configuration>
66                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
67                 </configuration>
68                 <executions>
69                     <execution>
70                         <id>check-license</id>
71                         <configuration>
72                             <excludes>
73                                 <!-- Skip Apache Licensed files -->
74                                 org/opendaylight/odlparent/karafutil/CustomBundleUrlStreamHandlerFactory.java
75                             </excludes>
76                         </configuration>
77                     </execution>
78                 </executions>
79             </plugin>
80         </plugins>
81     </build>
82
83   <!--
84     Maven Site Configuration
85
86     The following configuration is necessary for maven-site-plugin to
87     correctly identify the correct deployment path for OpenDaylight Maven
88     sites.
89   -->
90   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
91
92   <distributionManagement>
93     <site>
94       <id>opendaylight-site</id>
95       <url>${nexus.site.url}/${project.artifactId}/</url>
96     </site>
97   </distributionManagement>
98 </project>