Resolve Bug:445 Remove freemarker from config code generator.
[controller.git] / opendaylight / md-sal / inventory-manager / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <groupId>org.opendaylight.controller.md</groupId>
9     <artifactId>inventory-manager</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15       <tag>HEAD</tag>
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         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller.model</groupId>
29             <artifactId>model-flow-service</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-inventory</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.eclipse.xtend</groupId>
37             <artifactId>org.eclipse.xtend.lib</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.core</artifactId>
42             <scope>provided</scope>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.felix</groupId>
50                 <artifactId>maven-bundle-plugin</artifactId>
51                 <configuration>
52                     <instructions>
53                         <Bundle-Activator>org.opendaylight.controller.md.inventory.manager.InventoryActivator</Bundle-Activator>
54                         <Private-Package>org.opendaylight.controller.md.inventory.manager</Private-Package>
55                     </instructions>
56                 </configuration>
57             </plugin>
58             <plugin>
59                 <groupId>org.eclipse.xtend</groupId>
60                 <artifactId>xtend-maven-plugin</artifactId>
61             </plugin>
62             <plugin>
63                 <artifactId>maven-clean-plugin</artifactId>
64             </plugin>
65         </plugins>
66     </build>
67 </project>