Adding auto-sorting plugin to all Controller via parent/pom.xml
[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>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>commons-codec</groupId>
30       <artifactId>commons-codec</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>commons-lang</groupId>
34       <artifactId>commons-lang</artifactId>
35       <version>2.4</version>
36     </dependency>
37     <dependency>
38       <groupId>equinoxSDK381</groupId>
39       <artifactId>org.eclipse.osgi</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.eclipse.xtend</groupId>
43       <artifactId>org.eclipse.xtend.lib</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-flow-base</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.model</groupId>
59       <artifactId>model-flow-management</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-flow-service</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller.model</groupId>
67       <artifactId>model-inventory</artifactId>
68     </dependency>
69
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.apache.felix</groupId>
76         <artifactId>maven-bundle-plugin</artifactId>
77         <extensions>true</extensions>
78         <configuration>
79           <instructions>
80             <Bundle-Activator>org.opendaylight.md.controller.topology.lldp.LLDPActivator</Bundle-Activator>
81             <Export-Package>org.opendaylight.md.controller.topology.lldp.utils</Export-Package>
82             <Embed-Dependency>commons-lang</Embed-Dependency>
83             &gt;
84             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
85           </instructions>
86           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
87         </configuration>
88       </plugin>
89       <plugin>
90         <groupId>org.eclipse.xtend</groupId>
91         <artifactId>xtend-maven-plugin</artifactId>
92       </plugin>
93     </plugins>
94   </build>
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
98     <tag>HEAD</tag>
99   </scm>
100 </project>