Modify authz pom files.
[aaf/authz.git] / auth / auth-service / 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-service</artifactId>
33         <name>AAF Auth Service</name>
34         <description>Core API Component for AAF Auth</description>
35
36         <properties>
37                 <maven.test.failure.ignore>true</maven.test.failure.ignore>
38         </properties>
39
40         <dependencies>
41                 <dependency>
42                         <groupId>org.onap.aaf.auth</groupId>
43                         <artifactId>aaf-auth-client</artifactId>
44                 </dependency>
45
46                 <dependency>
47                         <groupId>org.onap.aaf.auth</groupId>
48                         <artifactId>aaf-auth-core</artifactId>
49                 </dependency>
50
51                 <!-- Add the Organizations you wish to support. You can delete ONAP if 
52                         you have something else Match with Property Entry: Organization.<root ns>, 
53                         i.e. Organization.onap.org=org.onap.org.DefaultOrg -->
54                 <dependency>
55                         <groupId>org.onap.aaf.auth</groupId>
56                         <artifactId>aaf-auth-deforg</artifactId>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.onap.aaf.auth</groupId>
61                         <artifactId>aaf-auth-cass</artifactId>
62                 </dependency>
63
64                 <dependency>
65                         <groupId>org.onap.aaf.auth</groupId>
66                         <artifactId>aaf-auth-oauth</artifactId>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>org.onap.aaf.misc</groupId>
71                         <artifactId>aaf-misc-rosetta</artifactId>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.onap.aaf.cadi</groupId>
76                         <artifactId>aaf-cadi-aaf</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>org.eclipse.jetty</groupId>
81                         <artifactId>jetty-servlet</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.slf4j</groupId>
86                         <artifactId>slf4j-log4j12</artifactId>
87                 </dependency>
88
89         </dependencies>
90
91         <build>
92                 <plugins>
93                         <plugin>
94                                 <groupId>org.apache.maven.plugins</groupId>
95                                 <artifactId>maven-jar-plugin</artifactId>
96                                 <configuration>
97                                         <excludes>
98                                                 <exclude>*.properties</exclude>
99                                         </excludes>
100                                 </configuration>
101                                 <version>2.3.1</version>
102                         </plugin>
103                         <plugin>
104                                 <groupId>org.apache.maven.plugins</groupId>
105                                 <artifactId>maven-deploy-plugin</artifactId>
106                                 <configuration>
107                                         <skip>true</skip>
108                                 </configuration>
109                         </plugin>
110                         <plugin>
111                                 <groupId>org.codehaus.mojo</groupId>
112                                 <artifactId>appassembler-maven-plugin</artifactId>
113                                 <configuration>
114                                         <programs>
115                                                 <program>
116                                                         <mainClass>org.onap.aaf.auth.service.AAF_Service</mainClass>
117                                                         <name>service</name>
118                                                         <commandLineArguments>
119                                                                 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.service.props</commandLineArgument>
120                                                         </commandLineArguments>
121                                                 </program>
122                                         </programs>
123                                 </configuration>
124                         </plugin>
125                         <!--  plugin> 
126                                 <groupId>com.spotify</groupId>
127                                 <artifactId>docker-maven-plugin</artifactId>
128                         </plugin -->    
129                 </plugins>
130         </build>
131
132 </project>