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