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