Eliminate blueprint for southbound-cli commands
[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.13.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-manager</artifactId>
12   <version>0.13.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.mdsal</groupId>
22       <artifactId>mdsal-binding-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal</groupId>
26       <artifactId>mdsal-singleton-common-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.openflowplugin.model</groupId>
30       <artifactId>model-flow-service</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowplugin</groupId>
34       <artifactId>openflowplugin-common</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller.model</groupId>
38       <artifactId>model-inventory</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller.model</groupId>
42       <artifactId>model-topology</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.slf4j</groupId>
56       <artifactId>slf4j-log4j12</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>javax.inject</groupId>
61       <artifactId>javax.inject</artifactId>
62       <optional>true</optional>
63     </dependency>
64     <dependency>
65       <groupId>javax.annotation</groupId>
66       <artifactId>javax.annotation-api</artifactId>
67       <optional>true</optional>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.aries.blueprint</groupId>
71       <artifactId>blueprint-maven-plugin-annotation</artifactId>
72       <optional>true</optional>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.aries.blueprint</groupId>
80         <artifactId>blueprint-maven-plugin</artifactId>
81       </plugin>
82     </plugins>
83   </build>
84   <scm>
85     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
86     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
87     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
88     <tag>HEAD</tag>
89   </scm>
90
91 </project>