sanitize Boolean autoboxing NPE
[openflowplugin.git] / openflowplugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-parent</artifactId>
8         <version>0.0.1-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin</artifactId>
13     <packaging>bundle</packaging>
14
15     <properties>
16         <yang.prototype.version>1.0-SNAPSHOT</yang.prototype.version>
17         <yang.version>0.5.9-SNAPSHOT</yang.version>
18     </properties>
19
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.apache.felix</groupId>
24                 <artifactId>maven-bundle-plugin</artifactId>
25                 <version>2.3.6</version>
26                 <extensions>true</extensions>
27                 <configuration>
28                     <instructions>
29                         <Bundle-Activator>
30                             org.opendaylight.openflowplugin.openflow.md.Activator
31                         </Bundle-Activator>
32                         <Private-Package>
33                             org.opendaylight.openflowplugin.md.*
34                         </Private-Package>
35                     </instructions>
36                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
37                 </configuration>
38             </plugin>
39         </plugins>
40     </build>
41     <dependencies>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal</artifactId>
45             <version>0.7.0-SNAPSHOT</version>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal.connection</artifactId>
50             <version>0.1.1-SNAPSHOT</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller.model</groupId>
54             <artifactId>model-flow-base</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller.model</groupId>
58             <artifactId>model-flow-service</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller.model</groupId>
62             <artifactId>model-flow-statistics</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller.model</groupId>
66             <artifactId>model-inventory</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-binding-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.openflowjava</groupId>
74             <artifactId>openflow-protocol-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.openflowjava</groupId>
78             <artifactId>openflow-protocol-spi</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>com.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85         <dependency>
86          <groupId>org.apache.commons</groupId>
87          <artifactId>commons-lang3</artifactId>
88          <version>3.1</version>
89        </dependency>
90         <dependency>
91             <groupId>equinoxSDK381</groupId>
92             <artifactId>org.eclipse.osgi</artifactId>
93         </dependency>
94
95
96         <dependency>
97             <groupId>junit</groupId>
98             <artifactId>junit</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102           <groupId>org.mockito</groupId>
103             <artifactId>mockito-all</artifactId>
104             <scope>test</scope>
105         </dependency>
106         
107         <dependency>
108             <groupId>org.slf4j</groupId>
109             <artifactId>slf4j-log4j12</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-common-util</artifactId>
114             <version>${yang.prototype.version}</version>
115         </dependency>
116     </dependencies>
117 </project>
118