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