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