Change maven module names and remove enforcer
[integration/distribution.git] / distribution-karaf / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>karaf-parent</artifactId>
7         <version>1.8.0-SNAPSHOT</version>
8         <relativePath/>
9     </parent>
10     <groupId>org.opendaylight.integration</groupId>
11     <artifactId>distribution-karaf</artifactId>
12     <version>0.6.0-SNAPSHOT</version>
13     <packaging>pom</packaging>
14     <name>distribution:${project.artifactId}</name>
15     <description>The actual Karaf building sub-project.</description>
16     <url>https://wiki.opendaylight.org/view/Integration/Distribution</url>
17     <licenses>
18         <license>
19             <name>Eclipse Public License v1.0</name>
20             <url>http://www.eclipse.org/legal/epl-v10.html</url>
21         </license>
22     </licenses>
23     <!-- FIXME: Add developers section -->
24     <scm>
25         <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection>
26         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection>
27         <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=distribution-karaf;hb=HEAD</url>
28         <tag>HEAD</tag>
29     </scm>
30     <dependencies>
31         <!-- opendaylight-karaf-parent uses this too -->
32         <dependency>
33             <groupId>org.apache.karaf.features</groupId>
34             <artifactId>framework</artifactId>
35             <type>kar</type>
36         </dependency>
37         <!-- integration feature -->
38         <dependency>
39             <artifactId>features-integration-index</artifactId>
40             <groupId>org.opendaylight.integration</groupId>
41             <version>${project.version}</version>
42             <classifier>features</classifier>
43             <type>xml</type>
44             <scope>runtime</scope>
45             <exclusions>
46                 <exclusion>
47                     <groupId>org.opendaylight.controller</groupId>
48                     <artifactId>opendaylight-karaf-empty</artifactId>
49                 </exclusion>
50             </exclusions>
51         </dependency>
52         <!-- integration test feature -->
53         <dependency>
54             <artifactId>features-integration-test</artifactId>
55             <groupId>org.opendaylight.integration</groupId>
56             <version>${project.version}</version>
57             <classifier>features</classifier>
58             <type>xml</type>
59             <scope>test</scope>
60             <exclusions>
61                 <exclusion>
62                     <groupId>org.opendaylight.controller</groupId>
63                     <artifactId>opendaylight-karaf-empty</artifactId>
64                 </exclusion>
65             </exclusions>
66         </dependency>
67     </dependencies>
68 </project>