f9a420f90f98b7ad442be002f377d9decce338cd
[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.authz</groupId>
19         <artifactId>authparent</artifactId>
20         <version>2.7.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         <skipTests>false</skipTests>
30         <!-- <sonar.skip>true</sonar.skip> -->
31         <!-- SONAR -->
32         <jacoco.version>0.7.7.201606060606</jacoco.version>
33         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
34         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
35         <!-- Default Sonar configuration -->
36         <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
37         <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
38         <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
39             below -->
40         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
41         <nexusproxy>https://nexus.onap.org</nexusproxy>
42         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
43         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
44         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
45         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
46     </properties>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.onap.aaf.authz</groupId>
51             <artifactId>aaf-auth-core</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.onap.aaf.authz</groupId>
56             <artifactId>aaf-cadi-aaf</artifactId>
57         </dependency>
58                 <dependency>            
59                         <groupId>org.owasp.encoder</groupId>            
60                         <artifactId>encoder</artifactId>                
61                         <version>1.2.1</version>                
62                 </dependency>
63                 
64     </dependencies>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-jar-plugin</artifactId>
71                 <configuration>
72                     <includes>
73                         <include>**/*.class</include>
74                     </includes>
75                 </configuration>
76                 <version>2.3.1</version>
77             </plugin>
78             <plugin>
79                 <groupId>org.codehaus.mojo</groupId>
80                 <artifactId>appassembler-maven-plugin</artifactId>
81                 <configuration>
82                     <programs>
83                         <program>
84                             <mainClass>org.onap.aaf.auth.hello.AAF_Hello</mainClass>
85                             <name>hello</name>
86                             <commandLineArguments>
87                                 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.hello.props</commandLineArgument>
88                                 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/hello</commandLineArgument>
89                                 <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument>
90                             </commandLineArguments>
91                         </program>
92                     </programs>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.jacoco</groupId>
97                 <artifactId>jacoco-maven-plugin</artifactId>
98                 <configuration>
99                     <excludes>
100                         <exclude>**/gen/**</exclude>
101                         <exclude>**/generated-sources/**</exclude>
102                         <exclude>**/yang-gen/**</exclude>
103                         <exclude>**/pax/**</exclude>
104                     </excludes>
105                 </configuration>
106                 <executions>
107
108                     <execution>
109                         <id>pre-unit-test</id>
110                         <goals>
111                             <goal>prepare-agent</goal>
112                         </goals>
113                         <configuration>
114                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
115                             <propertyName>surefireArgLine</propertyName>
116                         </configuration>
117                     </execution>
118
119
120                     <execution>
121                         <id>post-unit-test</id>
122                         <phase>test</phase>
123                         <goals>
124                             <goal>report</goal>
125                         </goals>
126                         <configuration>
127                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
128                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
129                         </configuration>
130                     </execution>
131                     <execution>
132                         <id>pre-integration-test</id>
133                         <phase>pre-integration-test</phase>
134                         <goals>
135                             <goal>prepare-agent</goal>
136                         </goals>
137                         <configuration>
138                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
139                             <propertyName>failsafeArgLine</propertyName>
140                         </configuration>
141                     </execution>
142
143                     <execution>
144                         <id>post-integration-test</id>
145                         <phase>post-integration-test</phase>
146                         <goals>
147                             <goal>report</goal>
148                         </goals>
149                         <configuration>
150                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
151                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
152                         </configuration>
153                     </execution>
154                 </executions>
155             </plugin>
156         </plugins>
157     </build>
158
159     <distributionManagement>
160         <repository>
161             <id>ecomp-releases</id>
162             <name>AAF Release Repository</name>
163             <url>${nexusproxy}${releaseNexusPath}</url>
164         </repository>
165         <snapshotRepository>
166             <id>ecomp-snapshots</id>
167             <name>AAF Snapshot Repository</name>
168             <url>${nexusproxy}${snapshotNexusPath}</url>
169         </snapshotRepository>
170         <site>
171             <id>ecomp-site</id>
172             <url>dav:${nexusproxy}${sitePath}</url>
173         </site>
174     </distributionManagement>
175 </project>