Merge "Change target to ${project.build.target} in a bunch of pom file. Add some...
[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"
2     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.0-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     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
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             <version>1.0-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller.model</groupId>
35             <artifactId>model-flow-service</artifactId>
36             <version>1.0-SNAPSHOT</version>
37         </dependency>    
38             <dependency>
39               <groupId>org.opendaylight.controller.model</groupId>
40               <artifactId>model-flow-base</artifactId>
41               <version>1.0-SNAPSHOT</version>
42             </dependency>
43            <dependency>
44               <groupId>org.opendaylight.controller.model</groupId>
45               <artifactId>model-flow-management</artifactId>
46               <version>1.0-SNAPSHOT</version>
47             </dependency>    
48         <dependency>
49             <groupId>org.opendaylight.controller.model</groupId>
50             <artifactId>model-inventory</artifactId>
51             <version>1.0-SNAPSHOT</version>
52         </dependency>
53         <dependency>
54             <groupId>org.eclipse.xtend</groupId>
55             <artifactId>org.eclipse.xtend.lib</artifactId>
56         </dependency>
57          <dependency>
58                 <groupId>equinoxSDK381</groupId>
59                 <artifactId>org.eclipse.osgi</artifactId>
60                 <version>3.8.1.v20120830-144521</version>
61               </dependency>
62               <dependency>
63             <groupId>commons-lang</groupId>
64             <artifactId>commons-lang</artifactId>
65             <version>2.6</version>
66           </dependency>
67           <dependency>
68             <groupId>com.google.guava</groupId>
69             <artifactId>guava</artifactId>
70           </dependency>
71           <dependency>
72                     <groupId>commons-codec</groupId>
73                     <artifactId>commons-codec</artifactId>
74                     <version>1.7</version>
75                   </dependency>
76     <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal</artifactId>
79             <version>0.7.0-SNAPSHOT</version>
80         </dependency>
81               
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.felix</groupId>
88                 <artifactId>maven-bundle-plugin</artifactId>
89                 <extensions>true</extensions>
90                 <configuration>
91                     <instructions>
92                         <Bundle-Activator>org.opendaylight.md.controller.topology.lldp.LLDPActivator</Bundle-Activator>
93                         <Export-Package>org.opendaylight.md.controller.topology.lldp.utils</Export-Package>
94                         <Embed-Dependency>commons-lang</Embed-Dependency>>
95                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
96                     </instructions>
97                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
98                 </configuration>
99             </plugin>
100             <plugin>
101                 <groupId>org.eclipse.xtend</groupId>
102                 <artifactId>xtend-maven-plugin</artifactId>
103                 <executions>
104                   <execution>
105                       <goals>
106                           <goal>compile</goal>
107                       </goals>
108                       <configuration>
109                           <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
110                       </configuration>
111                   </execution>
112               </executions>
113             </plugin>
114             <plugin>
115                 <artifactId>maven-clean-plugin</artifactId>
116                 <configuration>
117                     <filesets>
118                         <fileset>
119                             <directory>${basedir}/src/main/xtend-gen</directory>
120                             <includes>
121                                 <include>**</include>
122                             </includes>
123                         </fileset>
124                     </filesets>
125                 </configuration>
126             </plugin>
127         </plugins>
128     </build>
129 </project>