cf9304b513f4b167c6f84b690aa7ed7fb6a89ed7
[openflowplugin.git] / applications / topology-manager / 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.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.12.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-manager</artifactId>
12   <version>0.6.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencyManagement>
16     <dependencies>
17       <dependency>
18         <groupId>org.opendaylight.openflowplugin</groupId>
19         <artifactId>openflowplugin-artifacts</artifactId>
20         <version>${project.version}</version>
21         <type>pom</type>
22         <scope>import</scope>
23       </dependency>
24       <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>mdsal-artifacts</artifactId>
27         <version>1.7.0-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <groupId>com.google.guava</groupId>
37       <artifactId>guava</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-binding-util</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.openflowplugin.model</groupId>
49       <artifactId>model-flow-service</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.openflowplugin</groupId>
53       <artifactId>openflowplugin-common</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller.model</groupId>
57       <artifactId>model-inventory</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller.model</groupId>
61       <artifactId>model-topology</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-core</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.slf4j</groupId>
75       <artifactId>slf4j-log4j12</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
82     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
83     <tag>HEAD</tag>
84   </scm>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91         <configuration>
92           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.opendaylight.yangtools</groupId>
97         <artifactId>yang-maven-plugin</artifactId>
98       </plugin>
99     </plugins>
100   </build>
101
102 </project>