Bump versions by x.(y+1).z for next dev cycle
[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"
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.aaa</groupId>
16         <artifactId>aaa-artifacts</artifactId>
17         <version>0.9.0-SNAPSHOT</version>
18         <relativePath>../artifacts</relativePath>
19     </parent>
20
21     <groupId>org.opendaylight.aaa</groupId>
22     <artifactId>dependency-check</artifactId>
23     <version>0.9.0-SNAPSHOT</version>
24     <name>ODL :: aaa :: ${project.artifactId}</name>
25
26     <!--
27     This POM serves to check that all the dependencies in AAA’s dependency management are available.
28     It should contain all the dependencies in management.
29     -->
30
31     <!--
32     To simplify maintenance, all dependencies are listed in alphabetical order of groupId and artifactId.
33     This list of dependencies can be updated using the update-dependencies script.
34     -->
35     <dependencies>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>aaa-authn-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>aaa-cert</artifactId>
43             <classifier>config</classifier>
44             <type>xml</type>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>aaa-cert</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>aaa-cli</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>aaa-cli-jar</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>aaa-encrypt-service</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>aaa-encrypt-service-impl</artifactId>
65             <classifier>config</classifier>
66             <type>xml</type>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>aaa-filterchain</artifactId>
71             <classifier>config</classifier>
72             <type>cfg</type>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>aaa-filterchain</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>aaa-password-service-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>aaa-shiro-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>aaa-shiro</artifactId>
89             <classifier>aaa-app-config</classifier>
90             <type>xml</type>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>aaa-shiro</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>features-aaa</artifactId>
99             <classifier>features</classifier>
100             <type>xml</type>
101         </dependency>
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>odl-aaa-api</artifactId>
105             <classifier>features</classifier>
106             <type>xml</type>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>odl-aaa-cert</artifactId>
111             <classifier>features</classifier>
112             <type>xml</type>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>odl-aaa-cli</artifactId>
117             <classifier>features</classifier>
118             <type>xml</type>
119         </dependency>
120         <dependency>
121             <groupId>${project.groupId}</groupId>
122             <artifactId>odl-aaa-encryption-service</artifactId>
123             <classifier>features</classifier>
124             <type>xml</type>
125         </dependency>
126         <dependency>
127             <groupId>${project.groupId}</groupId>
128             <artifactId>odl-aaa-shiro</artifactId>
129             <classifier>features</classifier>
130             <type>xml</type>
131         </dependency>
132         <dependency>
133             <groupId>${project.groupId}.web</groupId>
134             <artifactId>servlet-api</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>${project.groupId}.web</groupId>
138             <artifactId>servlet-jersey2</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>${project.groupId}.web</groupId>
142             <artifactId>web-api</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>${project.groupId}.web</groupId>
146             <artifactId>web-osgi-impl</artifactId>
147         </dependency>
148
149     </dependencies>
150
151     <build>
152         <plugins>
153             <plugin>
154                 <groupId>org.apache.maven.plugins</groupId>
155                 <artifactId>maven-deploy-plugin</artifactId>
156                 <configuration>
157                     <skip>true</skip>
158                 </configuration>
159             </plugin>
160             <plugin>
161                 <groupId>org.apache.maven.plugins</groupId>
162                 <artifactId>maven-install-plugin</artifactId>
163                 <configuration>
164                     <skip>true</skip>
165                 </configuration>
166             </plugin>
167         </plugins>
168     </build>
169
170 </project>