model pom.xml ci
[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.packetcable</groupId>
11         <artifactId>packetcable</artifactId>
12         <packaging>pom</packaging>
13
14         <modules>
15                 <module>packetcable-driver</module>
16                 <module>packetcable-model</module>
17                 <module>packetcable-consumer</module>
18                 <module>packetcable-provider</module>
19                 <module>features-packetcable</module>
20         </modules>
21         <scm>
22                 <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
23                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
24                 <tag>HEAD</tag>
25                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
26         </scm>
27 <repositories>
28 <!-- OpenDaylight releases -->
29 <repository>
30 <id>opendaylight-mirror</id>
31 <name>opendaylight-mirror</name>
32 <url>http://nexus.opendaylight.org/content/groups/public/</url>
33 <snapshots>
34 <enabled>false</enabled>
35 </snapshots>
36 <releases>
37 <enabled>true</enabled>
38 <updatePolicy>never</updatePolicy>
39 </releases>
40 </repository>
41 <!-- OpenDaylight snapshots -->
42 <repository>
43 <id>opendaylight-snapshot</id>
44 <name>opendaylight-snapshot</name>
45 <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
46 <snapshots>
47 <enabled>true</enabled>
48 </snapshots>
49 <releases>
50 <enabled>false</enabled>
51 </releases>
52 </repository>
53 </repositories>
54         <dependencies>
55                 <dependency>
56                         <groupId>org.opendaylight.controller.model</groupId>
57                         <artifactId>model-flow-base</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.controller.model</groupId>
61                         <artifactId>model-flow-service</artifactId>
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         </dependencies>
80         <build>
81         <plugins>
82          <plugin>
83         <artifactId>maven-checkstyle-plugin</artifactId>
84         <configuration>
85           <skip>true</skip>
86         </configuration>
87         </plugin>
88         </plugins>
89         </build>
90
91
92 <!--    <profiles> -->
93 <!--            <profile> -->
94 <!--                    <id>integrationtests</id> -->
95 <!--                    <activation> -->
96 <!--                            <activeByDefault>false</activeByDefault> -->
97 <!--                    </activation> -->
98 <!--                    <modules> -->
99 <!--                            <module>packetcable-it</module> -->
100 <!--                    </modules> -->
101 <!--            </profile> -->
102 <!--    </profiles> -->
103 </project>