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