18b56b5dd4aa32600c9280b4fcbf3cd8b5c70062
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.opendaylight.controller</groupId>
6                 <artifactId>sal-parent</artifactId>
7                 <version>1.1-SNAPSHOT</version>
8         </parent>
9
10         <groupId>org.opendaylight.controller.packetcable</groupId>
11         <artifactId>packetcable-plugin</artifactId>
12         <packaging>pom</packaging>
13
14         <modules>
15                 <module>packetcable-model</module>
16                 <module>packetcable-consumer</module>
17                 <module>packetcable-provider</module>
18                 <module>features-packetcable</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 <repositories>
27 <!-- OpenDaylight releases -->
28 <repository>
29 <id>opendaylight-mirror</id>
30 <name>opendaylight-mirror</name>
31 <url>http://nexus.opendaylight.org/content/groups/public/</url>
32 <snapshots>
33 <enabled>false</enabled>
34 </snapshots>
35 <releases>
36 <enabled>true</enabled>
37 <updatePolicy>never</updatePolicy>
38 </releases>
39 </repository>
40 <!-- OpenDaylight snapshots -->
41 <repository>
42 <id>opendaylight-snapshot</id>
43 <name>opendaylight-snapshot</name>
44 <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
45 <snapshots>
46 <enabled>true</enabled>
47 </snapshots>
48 <releases>
49 <enabled>false</enabled>
50 </releases>
51 </repository>
52 </repositories>
53         <dependencies>
54                 <dependency>
55                         <groupId>org.opendaylight.controller.model</groupId>
56                         <artifactId>model-flow-base</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.opendaylight.controller.model</groupId>
60                         <artifactId>model-flow-service</artifactId>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.opendaylight.yangtools.model</groupId>
64                         <artifactId>ietf-inet-types</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.opendaylight.yangtools.model</groupId>
68                         <artifactId>ietf-yang-types</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.opendaylight.controller.model</groupId>
72                         <artifactId>model-inventory</artifactId>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.opendaylight.yangtools.model</groupId>
76                         <artifactId>opendaylight-l2-types</artifactId>
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
90
91 <!--    <profiles> -->
92 <!--            <profile> -->
93 <!--                    <id>integrationtests</id> -->
94 <!--                    <activation> -->
95 <!--                            <activeByDefault>false</activeByDefault> -->
96 <!--                    </activation> -->
97 <!--                    <modules> -->
98 <!--                            <module>packetcable-it</module> -->
99 <!--                    </modules> -->
100 <!--            </profile> -->
101 <!--    </profiles> -->
102 </project>