Release aaa
[aaa.git] / dependency-check / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2018 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.aaa</groupId>
14         <artifactId>aaa-artifacts</artifactId>
15         <version>0.18.4</version>
16         <relativePath>../artifacts</relativePath>
17     </parent>
18
19     <groupId>org.opendaylight.aaa</groupId>
20     <artifactId>dependency-check</artifactId>
21     <version>0.18.4</version>
22     <name>ODL :: aaa :: ${project.artifactId}</name>
23
24     <properties>
25         <maven.deploy.skip>true</maven.deploy.skip>
26         <maven.install.skip>true</maven.install.skip>
27     </properties>
28
29     <!--
30     This POM serves to check that all the dependencies in AAA’s dependency management are available.
31     It should contain all the dependencies in management.
32     -->
33
34     <!--
35     To simplify maintenance, all dependencies are listed in alphabetical order of groupId and artifactId.
36     This list of dependencies can be updated using the update-dependencies script.
37     -->
38     <dependencies>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>aaa-authn-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>aaa-cert</artifactId>
46             <classifier>config</classifier>
47             <type>xml</type>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>aaa-cert</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>aaa-cli</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>aaa-cli-jar</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>aaa-encrypt-service</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>aaa-filterchain</artifactId>
68             <classifier>config</classifier>
69             <type>cfg</type>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>aaa-filterchain</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>aaa-idm-store-h2</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>aaa-password-service-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>aaa-shiro-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>aaa-shiro</artifactId>
90             <classifier>aaa-app-config</classifier>
91             <type>xml</type>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>aaa-shiro</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>aaa-tokenauthrealm</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>features-aaa</artifactId>
104             <classifier>features</classifier>
105             <type>xml</type>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>odl-aaa-api</artifactId>
110             <classifier>features</classifier>
111             <type>xml</type>
112         </dependency>
113         <dependency>
114             <groupId>${project.groupId}</groupId>
115             <artifactId>odl-aaa-cert</artifactId>
116             <classifier>features</classifier>
117             <type>xml</type>
118         </dependency>
119         <dependency>
120             <groupId>${project.groupId}</groupId>
121             <artifactId>odl-aaa-cli</artifactId>
122             <classifier>features</classifier>
123             <type>xml</type>
124         </dependency>
125         <dependency>
126             <groupId>${project.groupId}</groupId>
127             <artifactId>odl-aaa-encryption-service</artifactId>
128             <classifier>features</classifier>
129             <type>xml</type>
130         </dependency>
131         <dependency>
132             <groupId>${project.groupId}</groupId>
133             <artifactId>odl-aaa-shiro</artifactId>
134             <classifier>features</classifier>
135             <type>xml</type>
136         </dependency>
137         <dependency>
138             <groupId>${project.groupId}</groupId>
139             <artifactId>odl-aaa-web</artifactId>
140             <classifier>features</classifier>
141             <type>xml</type>
142         </dependency>
143         <dependency>
144             <groupId>${project.groupId}</groupId>
145             <artifactId>odl-apache-shiro</artifactId>
146             <classifier>features</classifier>
147             <type>xml</type>
148         </dependency>
149         <dependency>
150             <groupId>${project.groupId}</groupId>
151             <artifactId>repackaged-shiro</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>${project.groupId}.web</groupId>
155             <artifactId>servlet-api</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>${project.groupId}.web</groupId>
159             <artifactId>servlet-jersey2</artifactId>
160         </dependency>
161         <dependency>
162             <groupId>${project.groupId}.web</groupId>
163             <artifactId>testutils</artifactId>
164         </dependency>
165         <dependency>
166             <groupId>${project.groupId}.web</groupId>
167             <artifactId>web-api</artifactId>
168         </dependency>
169         <dependency>
170             <groupId>${project.groupId}.web</groupId>
171             <artifactId>web-jetty-impl</artifactId>
172         </dependency>
173         <dependency>
174             <groupId>${project.groupId}.web</groupId>
175             <artifactId>web-osgi-impl</artifactId>
176         </dependency>
177
178     </dependencies>
179 </project>