watch jenkins
[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    <distributionManagement>
15         <!-- OpenDayLight Released artifact -->
16         <repository>
17             <id>opendaylight-release</id>
18             <url>${nexusproxy}/repositories/opendaylight.release</url>
19         </repository>
20         <!-- OpenDayLight Snapshot artifact -->
21         <snapshotRepository>
22             <id>opendaylight-snapshot</id>
23             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
24         </snapshotRepository>
25     </distributionManagement>
26
27         <modules>
28                 <module>packetcable-driver</module>
29                 <module>packetcable-model</module>
30                 <module>packetcable-consumer</module>
31                 <module>packetcable-provider</module>
32                 <module>features-packetcable</module>
33         </modules>
34         <scm>
35                 <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
36                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
37                 <tag>HEAD</tag>
38                 <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
39         </scm>
40 <repositories>
41 <!-- OpenDaylight releases -->
42 <repository>
43 <id>opendaylight-mirror</id>
44 <name>opendaylight-mirror</name>
45 <url>http://nexus.opendaylight.org/content/groups/public/</url>
46 <snapshots>
47 <enabled>false</enabled>
48 </snapshots>
49 <releases>
50 <enabled>true</enabled>
51 <updatePolicy>never</updatePolicy>
52 </releases>
53 </repository>
54 <!-- OpenDaylight snapshots -->
55 <repository>
56 <id>opendaylight-snapshot</id>
57 <name>opendaylight-snapshot</name>
58 <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
59 <snapshots>
60 <enabled>true</enabled>
61 </snapshots>
62 <releases>
63 <enabled>false</enabled>
64 </releases>
65 </repository>
66 </repositories>
67         <dependencies>
68                 <dependency>
69                         <groupId>org.opendaylight.controller.model</groupId>
70                         <artifactId>model-flow-base</artifactId>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.opendaylight.controller.model</groupId>
74                         <artifactId>model-flow-service</artifactId>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.opendaylight.yangtools.model</groupId>
78                         <artifactId>ietf-inet-types</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.opendaylight.yangtools.model</groupId>
82                         <artifactId>ietf-yang-types</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.opendaylight.controller.model</groupId>
86                         <artifactId>model-inventory</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.opendaylight.yangtools.model</groupId>
90                         <artifactId>opendaylight-l2-types</artifactId>
91                 </dependency>
92         </dependencies>
93         <build>
94         <plugins>
95          <plugin>
96         <artifactId>maven-checkstyle-plugin</artifactId>
97         <configuration>
98           <skip>true</skip>
99         </configuration>
100         </plugin>
101         </plugins>
102         </build>
103
104
105 <!--    <profiles> -->
106 <!--            <profile> -->
107 <!--                    <id>integrationtests</id> -->
108 <!--                    <activation> -->
109 <!--                            <activeByDefault>false</activeByDefault> -->
110 <!--                    </activation> -->
111 <!--                    <modules> -->
112 <!--                            <module>packetcable-it</module> -->
113 <!--                    </modules> -->
114 <!--            </profile> -->
115 <!--    </profiles> -->
116 </project>