Ditch blueprint from frm-sync
[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>openflowplugin-parent</artifactId>
7         <version>0.18.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>forwardingrules-sync</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>com.google.guava</groupId>
18             <artifactId>guava</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>com.guicedee.services</groupId>
22             <artifactId>javax.inject</artifactId>
23             <optional>true</optional>
24         </dependency>
25         <dependency>
26             <groupId>jakarta.annotation</groupId>
27             <artifactId>jakarta.annotation-api</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>mdsal-binding-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal</groupId>
36             <artifactId>mdsal-singleton-common-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin.model</groupId>
40             <artifactId>model-inventory</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.openflowplugin.model</groupId>
44             <artifactId>model-flow-service</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>concepts</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-common</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.osgi</groupId>
56             <artifactId>org.osgi.service.component.annotations</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.opendaylight.mdsal</groupId>
61             <artifactId>mdsal-binding-test-utils</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.sonarsource.java</groupId>
65             <artifactId>sonar-jacoco-listeners</artifactId>
66             <version>${sonar-jacoco-listeners.version}</version>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70
71     <scm>
72         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
73         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
74         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
75         <tag>HEAD</tag>
76     </scm>
77 </project>