fcbc89bfc8054dccba1b9af2a5591e3ea61e27d0
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / karaf-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2021 PANTHEON.tech, s.r.o. and others.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <parent>
13         <artifactId>mdsal-parent</artifactId>
14         <groupId>org.opendaylight.controller</groupId>
15         <version>5.0.3-SNAPSHOT</version>
16         <relativePath>../../../parent/pom.xml</relativePath>
17     </parent>
18     <modelVersion>4.0.0</modelVersion>
19
20     <groupId>org.opendaylight.controller.samples</groupId>
21     <artifactId>clustering-it-karaf-cli</artifactId>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.apache.karaf.shell</groupId>
27             <artifactId>org.apache.karaf.shell.core</artifactId>
28             <scope>provided</scope>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>mdsal-binding-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal</groupId>
36             <artifactId>mdsal-binding-dom-codec-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal</groupId>
40             <artifactId>mdsal-dom-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller.samples</groupId>
44             <artifactId>clustering-it-model</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>yang-data-codec-gson</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.service.component.annotations</artifactId>
53         </dependency>
54     </dependencies>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.karaf.tooling</groupId>
60                 <artifactId>karaf-services-maven-plugin</artifactId>
61                 <version>${karaf.version}</version>
62                 <executions>
63                     <execution>
64                         <id>service-metadata-generate</id>
65                         <phase>process-classes</phase>
66                         <goals>
67                             <goal>service-metadata-generate</goal>
68                         </goals>
69                     </execution>
70                 </executions>
71             </plugin>
72         </plugins>
73     </build>
74
75 </project>