Use ByteBuf.readRetainedSlice()
[openflowplugin.git] / openflowplugin-impl / 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" 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.19.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-impl</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>com.github.spotbugs</groupId>
17             <artifactId>spotbugs-annotations</artifactId>
18             <optional>true</optional>
19         </dependency>
20         <dependency>
21             <groupId>com.google.guava</groupId>
22             <artifactId>guava</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>com.guicedee.services</groupId>
26             <artifactId>javax.inject</artifactId>
27             <optional>true</optional>
28         </dependency>
29         <dependency>
30             <groupId>jakarta.annotation</groupId>
31             <artifactId>jakarta.annotation-api</artifactId>
32             <optional>true</optional>
33         </dependency>
34         <dependency>
35             <groupId>org.apache.commons</groupId>
36             <artifactId>commons-lang3</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.karaf.shell</groupId>
40             <artifactId>org.apache.karaf.shell.core</artifactId>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.infrautils</groupId>
45             <artifactId>diagstatus-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.infrautils</groupId>
49             <artifactId>infrautils-util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-binding-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>mdsal-binding-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.openflowplugin</groupId>
61             <artifactId>openflowplugin-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.openflowplugin</groupId>
65             <artifactId>openflowplugin</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.openflowplugin</groupId>
69             <artifactId>openflowplugin-extension-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.openflowplugin</groupId>
73             <artifactId>openflowplugin-common</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.openflowplugin.model</groupId>
77             <artifactId>model-flow-base</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.openflowplugin.model</groupId>
81             <artifactId>model-flow-service</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.openflowplugin.model</groupId>
85             <artifactId>model-flow-statistics</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.openflowplugin.model</groupId>
89             <artifactId>model-inventory</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>yang-common-netty</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
97             <artifactId>openflow-protocol-api</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
101             <artifactId>openflow-protocol-spi</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
105             <artifactId>openflowjava-util</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
109             <artifactId>openflow-protocol-impl</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.osgi</groupId>
113             <artifactId>org.osgi.framework</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.osgi</groupId>
117             <artifactId>org.osgi.service.cm</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.osgi</groupId>
121             <artifactId>org.osgi.service.component.annotations</artifactId>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.apache.felix</groupId>
129                 <artifactId>maven-bundle-plugin</artifactId>
130                 <extensions>true</extensions>
131                 <configuration>
132                     <instructions>
133                         <Karaf-Commands>org.opendaylight.openflowplugin.impl.karaf</Karaf-Commands>
134                         <!-- FIXME: remove this block when we do not have Blueprint components -->
135                         <Provide-Capability>
136                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.FlowGroupCacheManager";uses:="org.opendaylight.openflowplugin.api.openflow",
137                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.FlowGroupInfoHistories,org.opendaylight.openflowplugin.extension.api.OpenFlowPluginExtensionRegistratorProvider";uses:="org.opendaylight.openflowplugin.api.openflow,org.opendaylight.openflowplugin.extension.api",
138                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationServiceFactory";uses:="org.opendaylight.openflowplugin.api.openflow.configuration",
139                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.mastership.MastershipChangeServiceManager";uses:="org.opendaylight.openflowplugin.api.openflow.mastership",
140                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageIntelligenceAgency";uses:="org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific",
141                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.impl.DiagStatusProvider";uses:="org.opendaylight.openflowplugin.impl",
142
143                             osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationService";uses:="org.opendaylight.openflowplugin.api.openflow.configuration"
144                         </Provide-Capability>
145                     </instructions>
146                 </configuration>
147             </plugin>
148         </plugins>
149     </build>
150 </project>