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