4ddcff17286041eeef477ffeda3b4a1dba754614
[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>4.0.4-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.controller.samples</groupId>
40             <artifactId>clustering-it-model</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-data-codec-gson</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.osgi</groupId>
48             <artifactId>org.osgi.service.component.annotations</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.karaf.tooling</groupId>
56                 <artifactId>karaf-services-maven-plugin</artifactId>
57                 <version>${karaf.version}</version>
58                 <executions>
59                     <execution>
60                         <id>service-metadata-generate</id>
61                         <phase>process-classes</phase>
62                         <goals>
63                             <goal>service-metadata-generate</goal>
64                         </goals>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70
71 </project>