Merge "Fixed NullPointerException"
[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"
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>test-provider</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.opendaylight.controller.model</groupId>
48             <artifactId>model-flow-statistics</artifactId>
49         </dependency>   
50         <dependency>
51             <groupId>org.eclipse.xtend</groupId>
52             <artifactId>org.eclipse.xtend.lib</artifactId>
53             <version>${xtend.version}</version>
54         </dependency>
55          <dependency>
56                 <groupId>equinoxSDK381</groupId>
57                 <artifactId>org.eclipse.osgi</artifactId>
58               </dependency>
59               <dependency>
60             <groupId>commons-lang</groupId>
61             <artifactId>commons-lang</artifactId>
62           </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.apache.felix</groupId>
69                 <artifactId>maven-bundle-plugin</artifactId>
70                 <version>${bundle.plugin.version}</version>
71                 <extensions>true</extensions>
72                 <configuration>
73                     <instructions>
74                         <Bundle-Activator>org.opendaylight.openflowplugin.test.OpenflowpluginTestActivator</Bundle-Activator>
75                         <Embed-Dependency>commons-lang</Embed-Dependency>>
76                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77                     </instructions>
78                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
79                 </configuration>
80             </plugin>
81             <plugin>
82                 <groupId>org.eclipse.xtend</groupId>
83                 <artifactId>xtend-maven-plugin</artifactId>
84                 <version>${xtend.version}</version>
85                 <executions>
86                   <execution>
87                       <goals>
88                           <goal>compile</goal>
89                       </goals>
90                       <configuration>
91                           <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
92                       </configuration>
93                   </execution>
94               </executions>
95             </plugin>
96             <plugin>
97                 <artifactId>maven-clean-plugin</artifactId>
98                 <version>${maven.clean.plugin.version}</version>
99                 <configuration>
100                     <filesets>
101                         <fileset>
102                             <directory>${basedir}/src/main/xtend-gen</directory>
103                             <includes>
104                                 <include>**</include>
105                             </includes>
106                         </fileset>
107                     </filesets>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112 </project>