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