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