Merge "Updated ContainerFlow to take multiple vlans"
[controller.git] / opendaylight / md-sal / topology-manager / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.controller</groupId>
6         <artifactId>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.opendaylight.controller.md</groupId>
10     <artifactId>topology-manager</artifactId>
11     <packaging>bundle</packaging>
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
16     </scm>
17
18     <dependencies>
19         <dependency>
20             <groupId>com.google.guava</groupId>
21             <artifactId>guava</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-binding-api</artifactId>
26             <version>1.0-SNAPSHOT</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>sal-binding-util</artifactId>
31             <version>1.0-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller.model</groupId>
35             <artifactId>model-flow-service</artifactId>
36             <version>1.0-SNAPSHOT</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller.model</groupId>
40             <artifactId>model-inventory</artifactId>
41             <version>1.0-SNAPSHOT</version>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller.model</groupId>
45             <artifactId>model-topology</artifactId>
46             <version>1.0-SNAPSHOT</version>
47         </dependency>
48         <dependency>
49             <groupId>org.eclipse.xtend</groupId>
50             <artifactId>org.eclipse.xtend.lib</artifactId>
51         </dependency>
52     </dependencies>
53
54     <build>
55         <plugins>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Activator>org.opendaylight.md.controller.topology.manager.FlowCapableTopologyProvider</Bundle-Activator>
62                         <Private-Package>org.opendaylight.md.controller.topology.manager</Private-Package>
63                     </instructions>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.eclipse.xtend</groupId>
68                 <artifactId>xtend-maven-plugin</artifactId>
69             </plugin>
70             <plugin>
71                 <artifactId>maven-clean-plugin</artifactId>
72             </plugin>
73         </plugins>
74     </build>
75 </project>