Remove install/deploy plugin configuration
[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.11.0-SNAPSHOT</version>
16         <relativePath>../artifacts</relativePath>
17     </parent>
18
19     <groupId>org.opendaylight.aaa</groupId>
20     <artifactId>dependency-check</artifactId>
21     <version>0.11.0-SNAPSHOT</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-encrypt-service-impl</artifactId>
68             <classifier>config</classifier>
69             <type>xml</type>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>aaa-filterchain</artifactId>
74             <classifier>config</classifier>
75             <type>cfg</type>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>aaa-filterchain</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>aaa-password-service-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>aaa-shiro-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>aaa-shiro</artifactId>
92             <classifier>aaa-app-config</classifier>
93             <type>xml</type>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>aaa-shiro</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>features-aaa</artifactId>
102             <classifier>features</classifier>
103             <type>xml</type>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>odl-aaa-api</artifactId>
108             <classifier>features</classifier>
109             <type>xml</type>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}</groupId>
113             <artifactId>odl-aaa-cert</artifactId>
114             <classifier>features</classifier>
115             <type>xml</type>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>odl-aaa-cli</artifactId>
120             <classifier>features</classifier>
121             <type>xml</type>
122         </dependency>
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>odl-aaa-encryption-service</artifactId>
126             <classifier>features</classifier>
127             <type>xml</type>
128         </dependency>
129         <dependency>
130             <groupId>${project.groupId}</groupId>
131             <artifactId>odl-aaa-shiro</artifactId>
132             <classifier>features</classifier>
133             <type>xml</type>
134         </dependency>
135         <dependency>
136             <groupId>${project.groupId}.web</groupId>
137             <artifactId>servlet-api</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>${project.groupId}.web</groupId>
141             <artifactId>servlet-jersey2</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>${project.groupId}.web</groupId>
145             <artifactId>web-api</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>${project.groupId}.web</groupId>
149             <artifactId>web-osgi-impl</artifactId>
150         </dependency>
151
152     </dependencies>
153 </project>