Merge "OPNFLWPLUG-952: All links disappear from the topology"
[openflowplugin.git] / model / 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
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.openflowplugin</groupId>
8     <artifactId>openflowplugin-parent</artifactId>
9     <version>0.7.0-SNAPSHOT</version>
10     <relativePath>../parent</relativePath>
11   </parent>
12   <groupId>org.opendaylight.openflowplugin.model</groupId>
13   <artifactId>model-parent</artifactId>
14   <packaging>pom</packaging>
15
16   <modules>
17     <module>model-flow-base</module>
18     <module>model-flow-service</module>
19     <module>model-flow-statistics</module>
20   </modules>
21
22   <dependencies>
23     <dependency>
24       <groupId>org.opendaylight.mdsal</groupId>
25       <artifactId>yang-binding</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>yang-common</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.mdsal.model</groupId>
33       <artifactId>ietf-inet-types-2013-07-15</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal.model</groupId>
37       <artifactId>yang-ext</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
50             <Import-Package>org.opendaylight.yangtools.yang.binding.annotations, *</Import-Package>
51           </instructions>
52         </configuration>
53       </plugin>
54     </plugins>
55   </build>
56
57
58   <scm>
59     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
60     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
61     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
62     <tag>HEAD</tag>
63   </scm>
64
65 </project>