Merge "OPNFLWPLUG-1076 Migrate lldp-speaker, forwardingrules-sync and arbitratorrecon...
[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.10.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>javax.annotation</groupId>
16             <artifactId>javax.annotation-api</artifactId>
17             <optional>true</optional>
18         </dependency>
19         <dependency>
20             <groupId>com.google.code.findbugs</groupId>
21             <artifactId>jsr305</artifactId>
22             <version>3.0.2</version>
23             <optional>true</optional>
24         </dependency>
25
26         <dependency>
27             <groupId>org.opendaylight.mdsal</groupId>
28             <artifactId>mdsal-binding-api</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-inventory</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>org.opendaylight.openflowplugin.model</groupId>
38             <artifactId>model-flow-service</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-common</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>concepts</artifactId>
49         </dependency>
50
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-singleton-common-api</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-api</artifactId>
64         </dependency>
65
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding-dom-adapter</artifactId>
69             <scope>test</scope>
70         </dependency>
71
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-binding-dom-adapter</artifactId>
75             <scope>test</scope>
76             <type>test-jar</type>
77         </dependency>
78
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82         </dependency>
83
84         <dependency>
85             <groupId>org.mockito</groupId>
86             <artifactId>mockito-core</artifactId>
87             <scope>test</scope>
88         </dependency>
89
90         <dependency>
91             <groupId>org.slf4j</groupId>
92             <artifactId>slf4j-log4j12</artifactId>
93             <scope>test</scope>
94         </dependency>
95
96         <dependency>
97             <groupId>org.sonarsource.java</groupId>
98             <artifactId>sonar-jacoco-listeners</artifactId>
99             <version>${sonar-jacoco-listeners.version}</version>
100             <scope>test</scope>
101         </dependency>
102     </dependencies>
103
104     <build>
105         <resources>
106             <resource>
107                 <filtering>true</filtering>
108                 <directory>src/main/resources</directory>
109             </resource>
110         </resources>
111
112         <plugins>
113             <plugin>
114                 <groupId>org.apache.felix</groupId>
115                 <artifactId>maven-bundle-plugin</artifactId>
116             </plugin>
117         </plugins>
118     </build>
119
120     <scm>
121         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
122         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
123         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
124         <tag>HEAD</tag>
125     </scm>
126
127 </project>