dependency version update
[openflowplugin.git] / drop-test / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.0.1-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10     <artifactId>drop-test</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/openflowplugin.git</developerConnection>
15     </scm>
16     <properties>
17         <xtend.version>2.4.3</xtend.version>
18         <bundle.plugin.version>2.4.0</bundle.plugin.version>
19         <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
20     </properties>
21     <dependencies>
22         <dependency>
23             <groupId>com.google.guava</groupId>
24             <artifactId>guava</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller.model</groupId>
32             <artifactId>model-flow-service</artifactId>
33         </dependency>    
34             <dependency>
35               <groupId>org.opendaylight.controller.model</groupId>
36               <artifactId>model-flow-base</artifactId>
37             </dependency>
38            <dependency>
39               <groupId>org.opendaylight.controller.model</groupId>
40               <artifactId>model-flow-management</artifactId>
41             </dependency>    
42         <dependency>
43             <groupId>org.opendaylight.controller.model</groupId>
44             <artifactId>model-inventory</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.eclipse.xtend</groupId>
48             <artifactId>org.eclipse.xtend.lib</artifactId>
49             <version>${xtend.version}</version>
50         </dependency>
51          <dependency>
52                 <groupId>equinoxSDK381</groupId>
53                 <artifactId>org.eclipse.osgi</artifactId>
54               </dependency>
55               <dependency>
56             <groupId>commons-lang</groupId>
57             <artifactId>commons-lang</artifactId>
58           </dependency>
59           <dependency>
60                     <groupId>commons-codec</groupId>
61                     <artifactId>commons-codec</artifactId>
62                     <version>1.8</version>
63                   </dependency>
64               
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.felix</groupId>
71                 <artifactId>maven-bundle-plugin</artifactId>
72                 <version>${bundle.plugin.version}</version>
73                 <extensions>true</extensions>
74                 <configuration>
75                     <instructions>
76                         <Bundle-Activator>org.opendaylight.openflowplugin.droptest.DropTestActivator</Bundle-Activator>
77                         <Embed-Dependency>commons-lang</Embed-Dependency>>
78                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79                     </instructions>
80                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
81                 </configuration>
82             </plugin>
83             <plugin>
84                 <groupId>org.eclipse.xtend</groupId>
85                 <artifactId>xtend-maven-plugin</artifactId>
86                 <version>${xtend.version}</version>
87                 <executions>
88                   <execution>
89                       <goals>
90                           <goal>compile</goal>
91                       </goals>
92                       <configuration>
93                           <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
94                       </configuration>
95                   </execution>
96               </executions>
97             </plugin>
98             <plugin>
99                 <artifactId>maven-clean-plugin</artifactId>
100                 <version>${maven.clean.plugin.version}</version>
101                 <configuration>
102                     <filesets>
103                         <fileset>
104                             <directory>${basedir}/src/main/xtend-gen</directory>
105                             <includes>
106                                 <include>**</include>
107                             </includes>
108                         </fileset>
109                     </filesets>
110                 </configuration>
111             </plugin>
112         </plugins>
113     </build>
114 </project>