92eea0277afa6c9f24a9717aec6b52a8d7b36031
[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.8.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>odl-restconf-noauth</artifactId>
23     <version>1.5.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.8.0-SNAPSHOT</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.1.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.5.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.2.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.5.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.5.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.5.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.8.0-SNAPSHOT</version>
93             <type>xml</type>
94             <classifier>features</classifier>
95         </dependency>
96         <!-- TODO
97             <feature>war</feature>
98         -->
99         <dependency>
100             <groupId>org.opendaylight.netconf</groupId>
101             <artifactId>ietf-restconf</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.netconf</groupId>
105             <artifactId>ietf-yang-library</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.netconf</groupId>
109             <artifactId>ietf-restconf-monitoring</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.netconf</groupId>
113             <artifactId>sal-rest-connector</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>com.google.code.gson</groupId>
117             <artifactId>gson</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>yang-data-codec-gson</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>yang-model-export</artifactId>
126         </dependency>
127         <dependency>
128             <!-- finalname="${config.configfile.directory}/${config.restconf.configfile}" -->
129             <groupId>org.opendaylight.netconf</groupId>
130             <artifactId>sal-rest-connector-config</artifactId>
131             <version>${project.version}</version>
132             <type>xml</type>
133             <classifier>config</classifier>
134             <scope>provided</scope>
135         </dependency>
136         <dependency>
137             <!-- finalname="${config.configfile.directory}/${config.restconf.service.configfile}" -->
138             <groupId>org.opendaylight.netconf</groupId>
139             <artifactId>sal-rest-connector-config</artifactId>
140             <version>${project.version}</version>
141             <type>xml</type>
142             <classifier>configrestconfservice</classifier>
143             <scope>provided</scope>
144         </dependency>
145     </dependencies>
146 </project>