Remove CSS artifact remnants
[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.6.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>org.opendaylight.controller</groupId>
16       <artifactId>sal-binding-api</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.openflowplugin.model</groupId>
20       <artifactId>model-flow-service</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.openflowplugin</groupId>
24       <artifactId>openflowplugin-common</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>yang-common</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-common-util</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal</groupId>
36       <artifactId>mdsal-singleton-common-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.openflowplugin</groupId>
40       <artifactId>openflowplugin-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.openflowplugin.applications</groupId>
44       <artifactId>reconciliation-framework</artifactId>
45       <version>0.6.0-SNAPSHOT</version>
46     </dependency>
47     <dependency>
48       <groupId>junit</groupId>
49       <artifactId>junit</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.mockito</groupId>
54       <artifactId>mockito-core</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-binding-broker-impl</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65       <scope>test</scope>
66       <type>test-jar</type>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.openflowplugin</groupId>
70       <artifactId>openflowplugin-extension-onf</artifactId>
71     </dependency>
72   </dependencies>
73
74   <build>
75     <plugins>
76       <plugin>
77         <groupId>org.apache.felix</groupId>
78         <artifactId>maven-bundle-plugin</artifactId>
79       </plugin>
80       <plugin>
81         <groupId>org.opendaylight.yangtools</groupId>
82         <artifactId>yang-maven-plugin</artifactId>
83       </plugin>
84     </plugins>
85   </build>
86
87   <scm>
88     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
89     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
90     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
91     <tag>HEAD</tag>
92   </scm>
93
94 </project>