Remove deprecated modules.
[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     <groupId>org.opendaylight.packetcable</groupId>
12     <artifactId>packetcable</artifactId>
13     <name>packetcable</name> <!-- Used by Sonar to set project name -->
14     <packaging>pom</packaging>
15     <properties>
16         <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
17     </properties>
18     <distributionManagement>
19         <!-- OpenDayLight Released artifact -->
20         <repository>
21             <id>opendaylight-release</id>
22             <url>${nexusproxy}/repositories/opendaylight.release</url>
23         </repository>
24         <!-- OpenDayLight Snapshot artifact -->
25         <snapshotRepository>
26             <id>opendaylight-snapshot</id>
27             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
28         </snapshotRepository>
29     </distributionManagement>
30     <modules>
31         <module>packetcable-driver</module>
32         <!-- New modules for the new Arris API -->
33         <module>packetcable-policy-model</module>
34         <module>packetcable-policy-server</module>
35         <module>features-packetcable-policy</module>
36         <module>packetcable-policy-karaf</module>
37         <!-- Jar module CMTS emulator for testing -->
38         <module>packetcable-emulator</module>
39     </modules>
40     <scm>
41         <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
42         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
43         <tag>HEAD</tag>
44         <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
45     </scm>
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.openflowplugin.model</groupId>
49             <artifactId>model-flow-base</artifactId>
50             <version>${openflowplugin.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.openflowplugin.model</groupId>
54             <artifactId>model-flow-service</artifactId>
55             <version>${openflowplugin.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools.model</groupId>
59             <artifactId>ietf-inet-types</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools.model</groupId>
63             <artifactId>ietf-yang-types</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller.model</groupId>
67             <artifactId>model-inventory</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools.model</groupId>
71             <artifactId>opendaylight-l2-types</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.openflowplugin.model</groupId>
75             <artifactId>model-flow-statistics</artifactId>
76             <version>${openflowplugin.version}</version>
77         </dependency>
78     </dependencies>
79     <build>
80         <plugins>
81             <plugin>
82                 <artifactId>maven-checkstyle-plugin</artifactId>
83                 <configuration>
84                     <skip>true</skip>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89 </project>