New model module for use in the new feature to be called odl-packetcable-policy-serve...
[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.2.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.1.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         </modules>
46         <scm>
47                 <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
48                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
49                 <tag>HEAD</tag>
50                 <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
51         </scm>
52         <dependencies>
53                 <dependency>
54                         <groupId>org.opendaylight.openflowplugin.model</groupId>
55                         <artifactId>model-flow-base</artifactId>
56             <version>${openflowplugin.version}</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.opendaylight.openflowplugin.model</groupId>
60                         <artifactId>model-flow-service</artifactId>
61             <version>${openflowplugin.version}</version>
62                 </dependency>
63                 <dependency>
64                         <groupId>org.opendaylight.yangtools.model</groupId>
65                         <artifactId>ietf-inet-types</artifactId>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.opendaylight.yangtools.model</groupId>
69                         <artifactId>ietf-yang-types</artifactId>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.opendaylight.controller.model</groupId>
73                         <artifactId>model-inventory</artifactId>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.opendaylight.yangtools.model</groupId>
77                         <artifactId>opendaylight-l2-types</artifactId>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.opendaylight.openflowplugin.model</groupId>
81                         <artifactId>model-flow-statistics</artifactId>
82             <version>${openflowplugin.version}</version>
83                 </dependency>
84         </dependencies>
85         <build>
86                 <plugins>
87                         <plugin>
88                                 <artifactId>maven-checkstyle-plugin</artifactId>
89                                 <configuration>
90                                         <skip>true</skip>
91                                 </configuration>
92                         </plugin>
93                 </plugins>
94         </build>
95
96
97         <!-- <profiles> -->
98         <!-- <profile> -->
99         <!-- <id>integrationtests</id> -->
100         <!-- <activation> -->
101         <!-- <activeByDefault>false</activeByDefault> -->
102         <!-- </activation> -->
103         <!-- <modules> -->
104         <!-- <module>packetcable-it</module> -->
105         <!-- </modules> -->
106         <!-- </profile> -->
107         <!-- </profiles> -->
108 </project>