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