BUG 652 leafref CCE & BUG 720 colons problem
[controller.git] / opendaylight / md-sal / 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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <groupId>org.opendaylight.controller.md</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <packaging>bundle</packaging>
13   <properties>
14     <bundle.plugin.version>2.4.0</bundle.plugin.version>
15     <guava.version>14.0.1</guava.version>
16     <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
17     <xtend.version>2.4.3</xtend.version>
18   </properties>
19   <dependencies>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>commons-codec</groupId>
26       <artifactId>commons-codec</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>commons-lang</groupId>
30       <artifactId>commons-lang</artifactId>
31       <version>2.4</version>
32     </dependency>
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>org.eclipse.osgi</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.eclipse.xtend</groupId>
39       <artifactId>org.eclipse.xtend.lib</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller.model</groupId>
51       <artifactId>model-flow-base</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-flow-management</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.model</groupId>
59       <artifactId>model-flow-service</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-inventory</artifactId>
64     </dependency>
65
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <extensions>true</extensions>
74         <configuration>
75           <instructions>
76             <Bundle-Activator>org.opendaylight.md.controller.topology.lldp.LLDPActivator</Bundle-Activator>
77             <Export-Package>org.opendaylight.md.controller.topology.lldp.utils</Export-Package>
78             <Embed-Dependency>commons-lang</Embed-Dependency>
79             &gt;
80             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
81           </instructions>
82           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
83         </configuration>
84       </plugin>
85       <plugin>
86         <groupId>org.eclipse.xtend</groupId>
87         <artifactId>xtend-maven-plugin</artifactId>
88       </plugin>
89     </plugins>
90   </build>
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
94     <tag>HEAD</tag>
95   </scm>
96 </project>