Merge "Rework bit-copying functions and re-enable tests"
[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.openflowplugin</groupId>
6     <artifactId>openflowplugin-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-manager</artifactId>
12   <version>0.8.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>com.google.guava</groupId>
18       <artifactId>guava</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-binding-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-binding-util</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-singleton-common-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowplugin.model</groupId>
34       <artifactId>model-flow-service</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.openflowplugin</groupId>
38       <artifactId>openflowplugin-common</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller.model</groupId>
42       <artifactId>model-inventory</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller.model</groupId>
46       <artifactId>model-topology</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>junit</groupId>
50       <artifactId>junit</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.mockito</groupId>
55       <artifactId>mockito-core</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-log4j12</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>javax.inject</groupId>
65       <artifactId>javax.inject</artifactId>
66       <optional>true</optional>
67     </dependency>
68     <dependency>
69       <groupId>javax.annotation</groupId>
70       <artifactId>javax.annotation-api</artifactId>
71       <optional>true</optional>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.aries.blueprint</groupId>
75       <artifactId>blueprint-maven-plugin-annotation</artifactId>
76       <optional>true</optional>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.aries.blueprint</groupId>
84         <artifactId>blueprint-maven-plugin</artifactId>
85       </plugin>
86     </plugins>
87   </build>
88   <scm>
89     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
91     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
92     <tag>HEAD</tag>
93   </scm>
94
95 </project>