Modify authz pom files.
[aaf/authz.git] / auth / auth-fs / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  * ============LICENSE_START====================================================
4  * org.onap.aaf
5  * ===========================================================================
6  * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7  * ===========================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END====================================================
20  *
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.aaf.auth</groupId>
27                 <artifactId>parent</artifactId>
28                 <version>2.1.0-SNAPSHOT</version>
29                 <relativePath>../pom.xml</relativePath>
30         </parent>
31
32         <artifactId>aaf-auth-fs</artifactId>
33         <name>AAF Auth File Server (http)</name>
34         <description>Independent FileServer Component via HTTP (not S) for Public Files (i.e. CRLs) for AAF Auth</description>
35
36         <properties>
37                 <maven.test.failure.ignore>true</maven.test.failure.ignore>
38         </properties>
39
40         <developers>
41                 <developer>
42                         <name>Jonathan Gathman</name>
43                         <email>jonathan.gathman@att.com</email>
44                         <organization>ATT</organization>
45                         <roles>
46                                 <role>Architect</role>
47                                 <role>Lead Developer</role>
48                         </roles>
49                 </developer>
50                 <developer>
51                         <name>Gabe Maurer</name>
52                         <email>gabe.maurer@att.com</email>
53                         <organization>ATT</organization>
54                         <roles>
55                                 <role>Developer</role>
56                         </roles>
57                 </developer>
58                 <developer>
59                         <name>Ian Howell</name>
60                         <email>ian.howell@att.com</email>
61                         <organization>ATT</organization>
62                         <roles>
63                                 <role>Developer</role>
64                         </roles>
65                 </developer>
66                 <developer>
67                         <name>Sai Gandham</name>
68                         <email>sai.gandham@att.com</email>
69                         <organization>ATT</organization>
70                         <roles>
71                                 <role>Developer</role>
72                         </roles>
73                 </developer>
74         </developers>
75
76         <dependencies>
77                 <dependency>
78                         <groupId>org.onap.aaf.auth</groupId>
79                         <artifactId>aaf-auth-core</artifactId>
80                 </dependency>
81
82                 <dependency>
83                         <groupId>org.onap.aaf.cadi</groupId>
84                         <artifactId>aaf-cadi-core</artifactId>
85                 </dependency>
86         </dependencies>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.apache.maven.plugins</groupId>
92                                 <artifactId>maven-deploy-plugin</artifactId>
93                                 <configuration>
94                                         <skip>true</skip>
95                                 </configuration>
96                         </plugin>
97                         <plugin>
98                                 <groupId>org.codehaus.mojo</groupId>
99                                 <artifactId>appassembler-maven-plugin</artifactId>
100                                 <configuration>
101                                         <programs>
102                                                 <program>
103                                                         <mainClass>org.onap.aaf.auth.fs.AAF_FS</mainClass>
104                                                         <name>fs</name>
105                                                         <commandLineArguments>
106                                                                 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.fs.props</commandLineArgument>
107                                                         </commandLineArguments>
108                                                 </program>
109                                         </programs>
110                                 </configuration>
111                         </plugin>
112                 </plugins>
113                 <pluginManagement>
114                         <plugins />
115                 </pluginManagement>
116         </build>
117
118         
119 </project>