Merge "Remove deprecated BindingAwareProvider methods"
[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         </parent>
10
11         <groupId>org.opendaylight.packetcable</groupId>
12         <artifactId>packetcable</artifactId>
13         <name>packetcable</name> <!-- Used by Sonar to set project name -->
14         <packaging>pom</packaging>
15
16    <distributionManagement>
17         <!-- OpenDayLight Released artifact -->
18         <repository>
19             <id>opendaylight-release</id>
20             <url>${nexusproxy}/repositories/opendaylight.release</url>
21         </repository>
22         <!-- OpenDayLight Snapshot artifact -->
23         <snapshotRepository>
24             <id>opendaylight-snapshot</id>
25             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
26         </snapshotRepository>
27     </distributionManagement>
28
29         <modules>
30                 <module>packetcable-driver</module>
31                 <module>packetcable-model</module>
32                 <module>packetcable-provider</module>
33                 <module>packetcable-consumer</module>
34                 <module>features-packetcable</module>
35                 <module>packetcable-config</module>
36                 <module>packetcable-karaf</module>
37         </modules>
38         <scm>
39                 <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
40                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
41                 <tag>HEAD</tag>
42                 <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
43         </scm>
44         <repositories>
45                 <!-- OpenDaylight releases -->
46                 <repository>
47                         <id>opendaylight-mirror</id>
48                         <name>opendaylight-mirror</name>
49                         <url>http://nexus.opendaylight.org/content/groups/public/</url>
50                         <snapshots>
51                                 <enabled>false</enabled>
52                         </snapshots>
53                         <releases>
54                                 <enabled>true</enabled>
55                                 <updatePolicy>never</updatePolicy>
56                         </releases>
57                 </repository>
58                 <!-- OpenDaylight snapshots -->
59                 <repository>
60                         <id>opendaylight-snapshot</id>
61                         <name>opendaylight-snapshot</name>
62                         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
63                         <snapshots>
64                                 <enabled>true</enabled>
65                         </snapshots>
66                         <releases>
67                                 <enabled>false</enabled>
68                         </releases>
69                 </repository>
70         </repositories>
71         <dependencies>
72                 <dependency>
73                         <groupId>org.opendaylight.controller.model</groupId>
74                         <artifactId>model-flow-base</artifactId>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.opendaylight.controller.model</groupId>
78                         <artifactId>model-flow-service</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.opendaylight.yangtools.model</groupId>
82                         <artifactId>ietf-inet-types</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.opendaylight.yangtools.model</groupId>
86                         <artifactId>ietf-yang-types</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.opendaylight.controller.model</groupId>
90                         <artifactId>model-inventory</artifactId>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.opendaylight.yangtools.model</groupId>
94                         <artifactId>opendaylight-l2-types</artifactId>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.opendaylight.controller.model</groupId>
98                         <artifactId>model-flow-statistics</artifactId>
99                 </dependency>
100         </dependencies>
101         <build>
102                 <plugins>
103                         <plugin>
104                                 <artifactId>maven-checkstyle-plugin</artifactId>
105                                 <configuration>
106                                         <skip>true</skip>
107                                 </configuration>
108                         </plugin>
109                 </plugins>
110         </build>
111
112
113         <!-- <profiles> -->
114         <!-- <profile> -->
115         <!-- <id>integrationtests</id> -->
116         <!-- <activation> -->
117         <!-- <activeByDefault>false</activeByDefault> -->
118         <!-- </activation> -->
119         <!-- <modules> -->
120         <!-- <module>packetcable-it</module> -->
121         <!-- </modules> -->
122         <!-- </profile> -->
123         <!-- </profiles> -->
124
125
126     <pluginRepositories>
127         <pluginRepository>
128             <id>opendaylight-central</id>
129             <name>opendaylight-central</name>
130             <url>${nexusproxy}/repositories/public</url>
131             <snapshots>
132                 <enabled>false</enabled>
133             </snapshots>
134         </pluginRepository>
135         <pluginRepository>
136             <id>opendaylight-snapshot</id>
137             <name>central2</name>
138             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
139             <releases>
140                 <enabled>false</enabled>
141             </releases>
142         </pluginRepository>
143     </pluginRepositories>
144
145
146 </project>