consumer/provider restructure
[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.1-SNAPSHOT</version>
9         </parent>
10
11         <groupId>org.opendaylight.controller.packetcable</groupId>
12         <artifactId>packetcable-plugin</artifactId>
13         <packaging>pom</packaging>
14
15         <modules>
16                 <module>packetcable-model</module>
17                 <module>packetcable-consumer</module>
18                 <module>packetcable-provider</module>
19         </modules>
20         <scm>
21                 <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
22                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
23                 <tag>HEAD</tag>
24                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
25         </scm>
26         <dependencies>
27                 <dependency>
28                         <groupId>org.opendaylight.controller.model</groupId>
29                         <artifactId>model-flow-base</artifactId>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.opendaylight.controller.model</groupId>
33                         <artifactId>model-flow-service</artifactId>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.opendaylight.yangtools.model</groupId>
37                         <artifactId>ietf-inet-types</artifactId>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.opendaylight.yangtools.model</groupId>
41                         <artifactId>ietf-yang-types</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.opendaylight.controller.model</groupId>
45                         <artifactId>model-inventory</artifactId>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.opendaylight.yangtools.model</groupId>
49                         <artifactId>opendaylight-l2-types</artifactId>
50                 </dependency>
51         </dependencies>
52         <build>
53         <plugins>
54          <plugin>
55         <artifactId>maven-checkstyle-plugin</artifactId>
56         <configuration>
57           <skip>true</skip>
58         </configuration>
59         </plugin>
60         </plugins>
61         </build>
62
63
64 <!--    <profiles> -->
65 <!--            <profile> -->
66 <!--                    <id>integrationtests</id> -->
67 <!--                    <activation> -->
68 <!--                            <activeByDefault>false</activeByDefault> -->
69 <!--                    </activation> -->
70 <!--                    <modules> -->
71 <!--                            <module>packetcable-it</module> -->
72 <!--                    </modules> -->
73 <!--            </profile> -->
74 <!--    </profiles> -->
75 </project>