Resolve Bug:445 Remove freemarker from config code generator.
[controller.git] / opendaylight / md-sal / compatibility / flow-management-compatibility / 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>compatibility-parent</artifactId>
6     <version>1.1-SNAPSHOT</version>
7   </parent>
8   <artifactId>flow-management-compatibility</artifactId>
9   <packaging>bundle</packaging>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Bundle-Name>Forwarding Rules Manager Adapter for MD-SAL</Bundle-Name>
26           </instructions>
27         </configuration>
28       </plugin>
29       <plugin>
30         <groupId>org.eclipse.xtend</groupId>
31         <artifactId>xtend-maven-plugin</artifactId>
32       </plugin>
33       <plugin>
34         <artifactId>maven-clean-plugin</artifactId>
35       </plugin>
36     </plugins>
37   </build>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-common-util</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>sal-binding-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>com.google.guava</groupId>
54       <artifactId>guava</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.mockito</groupId>
63       <artifactId>mockito-all</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.eclipse.xtend</groupId>
68       <artifactId>org.eclipse.xtend.lib</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller.model</groupId>
72       <artifactId>model-flow-management</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>forwardingrulesmanager</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal-compatibility</artifactId>
81     </dependency>
82
83   </dependencies>
84 </project>