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