Merge "Move AAAShiroProvider class in act into separate package"
[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.7.0-SNAPSHOT</version>
18         <relativePath>../artifacts</relativePath>
19     </parent>
20
21     <groupId>org.opendaylight.aaa</groupId>
22     <artifactId>dependency-check</artifactId>
23     <version>0.7.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-act</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
133     </dependencies>
134
135     <build>
136         <plugins>
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-deploy-plugin</artifactId>
140                 <configuration>
141                     <skip>true</skip>
142                 </configuration>
143             </plugin>
144             <plugin>
145                 <groupId>org.apache.maven.plugins</groupId>
146                 <artifactId>maven-install-plugin</artifactId>
147                 <configuration>
148                     <skip>true</skip>
149                 </configuration>
150             </plugin>
151         </plugins>
152     </build>
153
154 </project>