Bump versions to 3.0.2-SNAPSHOT
[netconf.git] / karaf-static / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>karaf-dist-static</artifactId>
14         <version>10.0.0</version>
15         <relativePath/>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>netconf-karaf-static</artifactId>
21     <description>Apache Karaf static distribution with integrated NETCONF and RESTCONF</description>
22     <version>3.0.2-SNAPSHOT</version>
23     <packaging>karaf-assembly</packaging>
24
25     <properties>
26         <maven.deploy.skip>true</maven.deploy.skip>
27         <maven.install.skip>true</maven.install.skip>
28         <karaf.archiveTarGz>true</karaf.archiveTarGz>
29         <karaf.archiveZip>true</karaf.archiveZip>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.opendaylight.netconf</groupId>
36                 <artifactId>netconf-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43     <dependencies>
44         <dependency>
45             <groupId>org.opendaylight.netconf</groupId>
46             <artifactId>odl-netconf-connector-all</artifactId>
47             <classifier>features</classifier>
48             <type>xml</type>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>odl-restconf-nb-rfc8040</artifactId>
53             <classifier>features</classifier>
54             <type>xml</type>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.karaf.tooling</groupId>
62                 <artifactId>karaf-maven-plugin</artifactId>
63                 <configuration>
64                     <startupFeatures combine.children="append">
65                         <feature>ssh</feature>
66                     </startupFeatures>
67                     <bootFeatures combine.children="append">
68                         <feature>odl-netconf-connector-all</feature>
69                         <feature>odl-restconf-nb-rfc8040</feature>
70                     </bootFeatures>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75 </project>