Added generation of Transfer Objects from Type Definitions.
[controller.git] / opendaylight / topologymanager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../commons/opendaylight</relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>topologymanager</artifactId>
14   <version>0.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>2.3.6</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Export-Package>
27               org.opendaylight.controller.topologymanager
28             </Export-Package>
29             <Import-Package>
30           javax.xml.bind.annotation,
31               org.opendaylight.controller.sal.core,
32               org.opendaylight.controller.sal.utils,
33               org.opendaylight.controller.sal.packet,
34               org.opendaylight.controller.sal.topology,
35               org.opendaylight.controller.configuration,
36               org.opendaylight.controller.clustering.services,
37           org.osgi.service.component,
38               org.slf4j,
39           org.apache.felix.dm,
40           org.apache.commons.lang3.builder,
41           org.apache.commons.lang3.tuple,
42                   org.eclipse.osgi.framework.console,
43           org.osgi.framework
44             </Import-Package>
45         <Bundle-Activator>
46           org.opendaylight.controller.topologymanager.internal.Activator
47         </Bundle-Activator>
48           </instructions>
49         </configuration>
50       </plugin>
51     </plugins>
52   </build>
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal</artifactId>
57       <version>0.4.0-SNAPSHOT</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>clustering.services</artifactId>
62       <version>0.4.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>configuration</artifactId>
67       <version>0.4.0-SNAPSHOT</version>
68     </dependency>
69     
70   </dependencies>
71 </project>