Modify authz pom files.
[aaf/authz.git] / auth / auth-hello / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- * ============LICENSE_START==================================================== 
3         * org.onap.aaf * =========================================================================== 
4         * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. * =========================================================================== 
5         * Licensed under the Apache License, Version 2.0 (the "License"); * you may 
6         not use this file except in compliance with the License. * You may obtain 
7         a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * 
8         * Unless required by applicable law or agreed to in writing, software * distributed 
9         under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES 
10         OR CONDITIONS OF ANY KIND, either express or implied. * See the License for 
11         the specific language governing permissions and * limitations under the License. 
12         * ============LICENSE_END==================================================== 
13         * -->
14 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16         <modelVersion>4.0.0</modelVersion>
17         <parent>
18                 <groupId>org.onap.aaf.auth</groupId>
19                 <artifactId>parent</artifactId>
20                 <version>2.1.0-SNAPSHOT</version>
21                 <relativePath>../pom.xml</relativePath>
22         </parent>
23
24         <artifactId>aaf-auth-hello</artifactId>
25         <name>AAF Auth Hello Service</name>
26         <description>Hello Service Component for testing AAF Auth Access</description>
27
28         <properties>
29         </properties>
30
31         <dependencies>
32                 <dependency>
33                         <groupId>org.onap.aaf.auth</groupId>
34                         <artifactId>aaf-auth-core</artifactId>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.onap.aaf.cadi</groupId>
39                         <artifactId>aaf-cadi-aaf</artifactId>
40                 </dependency>
41
42         </dependencies>
43
44         <build>
45                 <plugins>
46                         <plugin>
47                                 <groupId>org.apache.maven.plugins</groupId>
48                                 <artifactId>maven-jar-plugin</artifactId>
49                                 <configuration>
50                                         <includes>
51                                                 <include>**/*.class</include>
52                                         </includes>
53                                 </configuration>
54                                 <version>2.3.1</version>
55                         </plugin>
56
57                         <!--This plugin's configuration is used to store Eclipse m2e settings 
58                                 only. It has no influence on the Maven build itself. -->
59                         <plugin>
60                                 <groupId>org.apache.maven.plugins</groupId>
61                                 <artifactId>maven-deploy-plugin</artifactId>
62                                 <configuration>
63                                         <skip>true</skip>
64                                 </configuration>
65                         </plugin>
66                         <plugin>
67                                 <groupId>org.codehaus.mojo</groupId>
68                                 <artifactId>appassembler-maven-plugin</artifactId>
69                                 <configuration>
70                                         <programs>
71                                                 <program>
72                                                         <mainClass>org.onap.aaf.auth.hello.AAF_Hello</mainClass>
73                                                         <name>hello</name>
74                                                         <commandLineArguments>
75                                                                 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.hello.props</commandLineArgument>
76                                                         </commandLineArguments>
77                                                 </program>
78                                         </programs>
79                                 </configuration>
80                         </plugin>
81                 </plugins>
82         </build>
83
84 </project>