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