Migrate to odlparent 1.9.0
[netconf.git] / features / restconf / odl-restconf-noauth / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. 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     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>single-feature-parent</artifactId>
17         <version>1.9.0</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>odl-restconf-noauth</artifactId>
23     <version>1.6.0-SNAPSHOT</version>
24     <packaging>feature</packaging>
25
26     <name>OpenDaylight :: Restconf</name>
27
28     <properties>
29         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
30         <config.restconf.configfile>10-rest-connector.xml</config.restconf.configfile>
31         <config.restconf.service.configfile>10-restconf-service.xml</config.restconf.service.configfile>
32     </properties>
33
34     <dependencyManagement>
35         <dependencies>
36             <dependency>
37                 <groupId>org.opendaylight.odlparent</groupId>
38                 <artifactId>odlparent-artifacts</artifactId>
39                 <version>1.9.0</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43             <dependency>
44                 <groupId>org.opendaylight.yangtools</groupId>
45                 <artifactId>yangtools-artifacts</artifactId>
46                 <version>1.2.0-SNAPSHOT</version>
47                 <type>pom</type>
48                 <scope>import</scope>
49             </dependency>
50             <dependency>
51                 <groupId>org.opendaylight.aaa</groupId>
52                 <artifactId>aaa-artifacts</artifactId>
53                 <version>0.6.0-SNAPSHOT</version>
54                 <type>pom</type>
55                 <scope>import</scope>
56             </dependency>
57             <dependency>
58                 <groupId>org.opendaylight.netconf</groupId>
59                 <artifactId>netconf-artifacts</artifactId>
60                 <version>1.3.0-SNAPSHOT</version>
61                 <type>pom</type>
62                 <scope>import</scope>
63             </dependency>
64             <dependency>
65                 <groupId>org.opendaylight.netconf</groupId>
66                 <artifactId>restconf-artifacts</artifactId>
67                 <version>1.6.0-SNAPSHOT</version>
68                 <type>pom</type>
69                 <scope>import</scope>
70             </dependency>
71         </dependencies>
72     </dependencyManagement>
73
74     <dependencies>
75         <dependency>
76             <groupId>org.opendaylight.aaa</groupId>
77             <artifactId>odl-aaa-shiro</artifactId>
78             <version>0.6.0-SNAPSHOT</version>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>odl-mdsal-broker</artifactId>
85             <version>1.6.0-SNAPSHOT</version>
86             <type>xml</type>
87             <classifier>features</classifier>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.odlparent</groupId>
91             <artifactId>odl4-netty-4</artifactId>
92             <version>1.9.0</version>
93             <type>xml</type>
94             <classifier>features</classifier>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.odlparent</groupId>
98             <artifactId>odl-karaf-feat-jetty</artifactId>
99             <type>xml</type>
100             <classifier>features</classifier>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.netconf</groupId>
104             <artifactId>ietf-restconf</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.netconf</groupId>
108             <artifactId>ietf-yang-library</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.netconf</groupId>
112             <artifactId>ietf-restconf-monitoring</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.netconf</groupId>
116             <artifactId>sal-rest-connector</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>com.google.code.gson</groupId>
120             <artifactId>gson</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.yangtools</groupId>
124             <artifactId>yang-data-codec-gson</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>yang-model-export</artifactId>
129         </dependency>
130         <dependency>
131             <!-- finalname="${config.configfile.directory}/${config.restconf.configfile}" -->
132             <groupId>org.opendaylight.netconf</groupId>
133             <artifactId>sal-rest-connector-config</artifactId>
134             <version>${project.version}</version>
135             <type>xml</type>
136             <classifier>config</classifier>
137         </dependency>
138         <dependency>
139             <!-- finalname="${config.configfile.directory}/${config.restconf.service.configfile}" -->
140             <groupId>org.opendaylight.netconf</groupId>
141             <artifactId>sal-rest-connector-config</artifactId>
142             <version>${project.version}</version>
143             <type>xml</type>
144             <classifier>configrestconfservice</classifier>
145         </dependency>
146     </dependencies>
147 </project>