Make applications/pom.xml an aggregator
[openflowplugin.git] / applications / forwardingrules-manager / 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-manager</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>javax.inject</groupId>
18       <artifactId>javax.inject</artifactId>
19       <optional>true</optional>
20     </dependency>
21     <dependency>
22       <groupId>javax.annotation</groupId>
23       <artifactId>javax.annotation-api</artifactId>
24       <optional>true</optional>
25     </dependency>
26     <dependency>
27       <groupId>com.google.code.findbugs</groupId>
28       <artifactId>jsr305</artifactId>
29       <version>3.0.2</version>
30       <optional>true</optional>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal</groupId>
34       <artifactId>mdsal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.serviceutils</groupId>
38       <artifactId>srm-api</artifactId>
39       <version>${serviceutils.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin.model</groupId>
43       <artifactId>model-flow-service</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin</groupId>
47       <artifactId>openflowplugin-common</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-common</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal</groupId>
55       <artifactId>mdsal-singleton-common-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin</groupId>
59       <artifactId>openflowplugin-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin.applications</groupId>
63       <artifactId>reconciliation-framework</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.infrautils</groupId>
67       <artifactId>infrautils-util</artifactId>
68       <version>${infrautils.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal</groupId>
72       <artifactId>mdsal-binding-dom-adapter</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal</groupId>
77       <artifactId>mdsal-binding-dom-adapter</artifactId>
78       <scope>test</scope>
79       <type>test-jar</type>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.openflowplugin</groupId>
83       <artifactId>openflowplugin-extension-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.awaitility</groupId>
87       <artifactId>awaitility</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.openflowplugin.applications</groupId>
92       <artifactId>arbitratorreconciliation-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.apache.aries.blueprint</groupId>
96       <artifactId>blueprint-maven-plugin-annotation</artifactId>
97       <optional>true</optional>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103       <plugin>
104         <groupId>org.apache.aries.blueprint</groupId>
105         <artifactId>blueprint-maven-plugin</artifactId>
106         <configuration>
107           <scanPaths>
108             <scanPath>org.opendaylight.openflowplugin.applications.frm</scanPath>
109           </scanPaths>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114
115   <scm>
116     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
117     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
118     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
119     <tag>HEAD</tag>
120   </scm>
121 </project>