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