Relocate config subsystem.
[packetcable.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.opendaylight.controller</groupId>
7                 <artifactId>sal-parent</artifactId>
8                 <version>1.3.0-SNAPSHOT</version>
9         <relativePath/>
10         </parent>
11
12         <groupId>org.opendaylight.packetcable</groupId>
13         <artifactId>packetcable</artifactId>
14         <name>packetcable</name> <!-- Used by Sonar to set project name -->
15         <packaging>pom</packaging>
16
17     <properties>
18       <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
19     </properties>
20
21    <distributionManagement>
22         <!-- OpenDayLight Released artifact -->
23         <repository>
24             <id>opendaylight-release</id>
25             <url>${nexusproxy}/repositories/opendaylight.release</url>
26         </repository>
27         <!-- OpenDayLight Snapshot artifact -->
28         <snapshotRepository>
29             <id>opendaylight-snapshot</id>
30             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
31         </snapshotRepository>
32     </distributionManagement>
33
34         <modules>
35                 <module>packetcable-driver</module>
36                 <module>packetcable-model</module>
37                 <module>packetcable-provider</module>
38                 <module>packetcable-consumer</module>
39                 <module>features-packetcable</module>
40                 <module>packetcable-config</module>
41                 <module>packetcable-karaf</module>
42
43                 <!-- New modules for the new Arris API -->
44                 <module>packetcable-policy-model</module>
45                 <module>packetcable-policy-server</module>
46                 <module>features-packetcable-policy</module>
47                 <module>packetcable-policy-karaf</module>
48
49                 <!-- Jar module CMTS emulator for testing -->
50                 <module>packetcable-emulator</module>
51         </modules>
52         <scm>
53                 <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
54                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
55                 <tag>HEAD</tag>
56                 <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
57         </scm>
58         <dependencies>
59                 <dependency>
60                         <groupId>org.opendaylight.openflowplugin.model</groupId>
61                         <artifactId>model-flow-base</artifactId>
62             <version>${openflowplugin.version}</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.opendaylight.openflowplugin.model</groupId>
66                         <artifactId>model-flow-service</artifactId>
67             <version>${openflowplugin.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.opendaylight.yangtools.model</groupId>
71                         <artifactId>ietf-inet-types</artifactId>
72                 </dependency>
73                 <dependency>
74                         <groupId>org.opendaylight.yangtools.model</groupId>
75                         <artifactId>ietf-yang-types</artifactId>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.opendaylight.controller.model</groupId>
79                         <artifactId>model-inventory</artifactId>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.opendaylight.yangtools.model</groupId>
83                         <artifactId>opendaylight-l2-types</artifactId>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.opendaylight.openflowplugin.model</groupId>
87                         <artifactId>model-flow-statistics</artifactId>
88             <version>${openflowplugin.version}</version>
89                 </dependency>
90         </dependencies>
91         <build>
92                 <plugins>
93                         <plugin>
94                                 <artifactId>maven-checkstyle-plugin</artifactId>
95                                 <configuration>
96                                         <skip>true</skip>
97                                 </configuration>
98                         </plugin>
99                 </plugins>
100         </build>
101
102
103         <!-- <profiles> -->
104         <!-- <profile> -->
105         <!-- <id>integrationtests</id> -->
106         <!-- <activation> -->
107         <!-- <activeByDefault>false</activeByDefault> -->
108         <!-- </activation> -->
109         <!-- <modules> -->
110         <!-- <module>packetcable-it</module> -->
111         <!-- </modules> -->
112         <!-- </profile> -->
113         <!-- </profiles> -->
114 </project>