Switch to MD-SAL APIs
[openflowplugin.git] / applications / forwardingrules-sync / 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>applications</artifactId>
7         <version>0.9.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.opendaylight.openflowplugin.applications</groupId>
10     <artifactId>forwardingrules-sync</artifactId>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.opendaylight.mdsal</groupId>
16             <artifactId>mdsal-binding-api</artifactId>
17         </dependency>
18
19         <dependency>
20             <groupId>org.opendaylight.controller.model</groupId>
21             <artifactId>model-inventory</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.openflowplugin.model</groupId>
26             <artifactId>model-flow-service</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>yang-common</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>concepts</artifactId>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-singleton-common-api</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>com.google.guava</groupId>
46             <artifactId>guava</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-api</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-dom-adapter</artifactId>
57             <scope>test</scope>
58         </dependency>
59
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-binding-dom-adapter</artifactId>
63             <scope>test</scope>
64             <type>test-jar</type>
65         </dependency>
66
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70         </dependency>
71
72         <dependency>
73             <groupId>org.mockito</groupId>
74             <artifactId>mockito-core</artifactId>
75             <scope>test</scope>
76         </dependency>
77
78         <dependency>
79             <groupId>org.slf4j</groupId>
80             <artifactId>slf4j-log4j12</artifactId>
81             <scope>test</scope>
82         </dependency>
83
84         <dependency>
85             <groupId>org.sonarsource.java</groupId>
86             <artifactId>sonar-jacoco-listeners</artifactId>
87             <version>${sonar-jacoco-listeners.version}</version>
88             <scope>test</scope>
89         </dependency>
90     </dependencies>
91
92     <build>
93         <resources>
94             <resource>
95                 <filtering>true</filtering>
96                 <directory>src/main/resources</directory>
97             </resource>
98         </resources>
99
100         <plugins>
101             <plugin>
102                 <groupId>org.apache.felix</groupId>
103                 <artifactId>maven-bundle-plugin</artifactId>
104             </plugin>
105         </plugins>
106     </build>
107
108     <scm>
109         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
110         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
111         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
112         <tag>HEAD</tag>
113     </scm>
114
115 </project>