Remove AAAFilter and aaa-shiro-act
[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.8.0-SNAPSHOT</version>
18         <relativePath>../artifacts</relativePath>
19     </parent>
20
21     <groupId>org.opendaylight.aaa</groupId>
22     <artifactId>dependency-check</artifactId>
23     <version>0.8.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             <classifier>config</classifier>
62             <type>xml</type>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>aaa-encrypt-service</artifactId>
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-shiro-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>aaa-shiro</artifactId>
85             <classifier>aaa-app-config</classifier>
86             <type>xml</type>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>aaa-shiro</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>features-aaa</artifactId>
95             <classifier>features</classifier>
96             <type>xml</type>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>odl-aaa-api</artifactId>
101             <classifier>features</classifier>
102             <type>xml</type>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>odl-aaa-cert</artifactId>
107             <classifier>features</classifier>
108             <type>xml</type>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>odl-aaa-cli</artifactId>
113             <classifier>features</classifier>
114             <type>xml</type>
115         </dependency>
116         <dependency>
117             <groupId>${project.groupId}</groupId>
118             <artifactId>odl-aaa-encryption-service</artifactId>
119             <classifier>features</classifier>
120             <type>xml</type>
121         </dependency>
122         <dependency>
123             <groupId>${project.groupId}</groupId>
124             <artifactId>odl-aaa-shiro</artifactId>
125             <classifier>features</classifier>
126             <type>xml</type>
127         </dependency>
128
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-deploy-plugin</artifactId>
136                 <configuration>
137                     <skip>true</skip>
138                 </configuration>
139             </plugin>
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-install-plugin</artifactId>
143                 <configuration>
144                     <skip>true</skip>
145                 </configuration>
146             </plugin>
147         </plugins>
148     </build>
149
150 </project>