Bump yangtools to 1.0.0-SNAPSHOT
[aaa.git] / features / authz / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2014 Hewlett-Packard Development Company, L.P. and others.
3     All rights reserved. This program and the accompanying materials are made
4     available under the terms of the Eclipse Public License v1.0 which accompanies
5     this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.odlparent</groupId>
11         <artifactId>features-parent</artifactId>
12         <version>1.7.0-SNAPSHOT</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.aaa</groupId>
17     <artifactId>features-aaa-authz</artifactId>
18     <version>0.4.0-SNAPSHOT</version>
19     <packaging>jar</packaging>
20
21     <properties>
22         <config.version>0.5.0-SNAPSHOT</config.version>
23         <mdsal.version>2.1.0-SNAPSHOT</mdsal.version>
24         <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
25         <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <!-- This project -->
31             <dependency>
32                 <groupId>org.opendaylight.aaa</groupId>
33                 <artifactId>aaa-parent</artifactId>
34                 <version>${project.version}</version>
35                 <scope>import</scope>
36                 <type>pom</type>
37             </dependency>
38         </dependencies>
39     </dependencyManagement>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.opendaylight.aaa</groupId>
44             <artifactId>features-aaa-api</artifactId>
45             <classifier>features</classifier>
46             <type>xml</type>
47         </dependency>
48         <!-- odl-aaa-authz -->
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>features-yangtools</artifactId>
52             <classifier>features</classifier>
53             <type>xml</type>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>features-mdsal</artifactId>
58             <classifier>features</classifier>
59             <version>${mdsal.version}</version>
60             <type>xml</type>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>features-config</artifactId>
65             <classifier>features</classifier>
66             <type>xml</type>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>features-mdsal</artifactId>
71             <classifier>features</classifier>
72             <type>xml</type>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.aaa</groupId>
76             <artifactId>authz-restconf-config</artifactId>
77             <type>xml</type>
78             <classifier>config</classifier>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.aaa</groupId>
82             <artifactId>aaa-authz-model</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.aaa</groupId>
86             <artifactId>aaa-authz-service</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.aaa</groupId>
90             <artifactId>authz-service-config</artifactId>
91             <type>xml</type>
92             <classifier>config</classifier>
93         </dependency>
94     </dependencies>
95     <scm>
96         <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
97         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
98         <tag>HEAD</tag>
99         <url>https://git.opendaylight.org/gerrit/gitweb?p=aaa.git;a=summary</url>
100     </scm>
101 </project>