Updated references to latest karaf versions.
[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         <relativePath/>
10         </parent>
11
12         <groupId>org.opendaylight.packetcable</groupId>
13         <artifactId>packetcable</artifactId>
14         <name>packetcable</name> <!-- Used by Sonar to set project name -->
15         <packaging>pom</packaging>
16
17     <properties>
18       <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
19     </properties>
20
21    <distributionManagement>
22         <!-- OpenDayLight Released artifact -->
23         <repository>
24             <id>opendaylight-release</id>
25             <url>${nexusproxy}/repositories/opendaylight.release</url>
26         </repository>
27         <!-- OpenDayLight Snapshot artifact -->
28         <snapshotRepository>
29             <id>opendaylight-snapshot</id>
30             <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
31         </snapshotRepository>
32     </distributionManagement>
33
34         <modules>
35                 <module>packetcable-driver</module>
36                 <module>packetcable-model</module>
37                 <module>packetcable-provider</module>
38                 <module>packetcable-consumer</module>
39                 <module>features-packetcable</module>
40                 <module>packetcable-config</module>
41                 <module>packetcable-karaf</module>
42         </modules>
43         <scm>
44                 <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
45                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
46                 <tag>HEAD</tag>
47                 <url>https://wiki.opendaylight.org/view/PacketCablePCMM:Main</url>
48         </scm>
49         <dependencies>
50                 <dependency>
51                         <groupId>org.opendaylight.openflowplugin.model</groupId>
52                         <artifactId>model-flow-base</artifactId>
53             <version>${openflowplugin.version}</version>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.opendaylight.openflowplugin.model</groupId>
57                         <artifactId>model-flow-service</artifactId>
58             <version>${openflowplugin.version}</version>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.opendaylight.yangtools.model</groupId>
62                         <artifactId>ietf-inet-types</artifactId>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.opendaylight.yangtools.model</groupId>
66                         <artifactId>ietf-yang-types</artifactId>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.opendaylight.controller.model</groupId>
70                         <artifactId>model-inventory</artifactId>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.opendaylight.yangtools.model</groupId>
74                         <artifactId>opendaylight-l2-types</artifactId>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.opendaylight.openflowplugin.model</groupId>
78                         <artifactId>model-flow-statistics</artifactId>
79             <version>${openflowplugin.version}</version>
80                 </dependency>
81         </dependencies>
82         <build>
83                 <plugins>
84                         <plugin>
85                                 <artifactId>maven-checkstyle-plugin</artifactId>
86                                 <configuration>
87                                         <skip>true</skip>
88                                 </configuration>
89                         </plugin>
90                 </plugins>
91         </build>
92
93
94         <!-- <profiles> -->
95         <!-- <profile> -->
96         <!-- <id>integrationtests</id> -->
97         <!-- <activation> -->
98         <!-- <activeByDefault>false</activeByDefault> -->
99         <!-- </activation> -->
100         <!-- <modules> -->
101         <!-- <module>packetcable-it</module> -->
102         <!-- </modules> -->
103         <!-- </profile> -->
104         <!-- </profiles> -->
105 </project>