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