Remove CSS artifact remnants
[openflowplugin.git] / applications / topology-lldp-discovery / 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.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.12.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <version>0.6.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencyManagement>
16     <dependencies>
17       <dependency>
18         <groupId>org.opendaylight.openflowplugin</groupId>
19         <artifactId>openflowplugin-artifacts</artifactId>
20         <version>${project.version}</version>
21         <type>pom</type>
22         <scope>import</scope>
23       </dependency>
24       <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>mdsal-artifacts</artifactId>
27         <version>1.7.0-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <groupId>com.google.guava</groupId>
37       <artifactId>guava</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>commons-codec</groupId>
41       <artifactId>commons-codec</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>commons-lang</groupId>
45       <artifactId>commons-lang</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-binding-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>liblldp</artifactId>
54       <version>0.14.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.openflowplugin.model</groupId>
58       <artifactId>model-flow-base</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.openflowplugin.model</groupId>
62       <artifactId>model-flow-service</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller.model</groupId>
66       <artifactId>model-inventory</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>junit</groupId>
70       <artifactId>junit</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.mockito</groupId>
75       <artifactId>mockito-core</artifactId>
76       <scope>test</scope>
77     </dependency>
78
79
80   </dependencies>
81
82   <scm>
83     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
84     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
85     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
86     <tag>HEAD</tag>
87   </scm>
88
89 </project>