13640b53ed21f3348baba0cbdbe23ad7285daba5
[aaf/authz.git] / auth / auth-locate / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- * ============LICENSE_START==================================================== 
3         * org.onap.aaf * =========================================================================== 
4         * Copyright (c) 2017 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.1.2-SNAPSHOT</version>
21                 <relativePath>../pom.xml</relativePath>
22         </parent>
23
24         <artifactId>aaf-auth-locate</artifactId>
25         <name>AAF Auth Locate</name>
26         <description>Location Service for AAF Auth Components</description>
27
28         <properties>
29                 <maven.test.failure.ignore>true</maven.test.failure.ignore>
30                 <!-- SONAR -->
31                 <!-- <sonar.skip>true</sonar.skip> -->
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-client</artifactId>
52                 </dependency>
53         
54                 <dependency>
55                         <groupId>org.onap.aaf.authz</groupId>
56                         <artifactId>aaf-auth-core</artifactId>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.onap.aaf.authz</groupId>
61                         <artifactId>aaf-auth-cass</artifactId>
62                 </dependency>
63
64                 <dependency>
65                         <groupId>org.onap.aaf.authz</groupId>
66                         <artifactId>aaf-cadi-aaf</artifactId>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>org.onap.aaf.authz</groupId>
71                         <artifactId>aaf-misc-rosetta</artifactId>
72                 </dependency>
73         </dependencies>
74
75         <build>
76                 <plugins>
77                         <plugin>
78                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
79                                 <artifactId>maven-jaxb2-plugin</artifactId>
80                                 <version>0.8.2</version>
81                                 <executions>
82                                         <execution>
83                                                 <goals>
84                                                         <goal>generate</goal>
85                                                 </goals>
86                                         </execution>
87                                 </executions>
88                                 <configuration>
89                                         <schemaDirectory>src/main/xsd</schemaDirectory>
90                                 </configuration>
91                         </plugin>
92
93                         <plugin>
94                                 <groupId>org.apache.maven.plugins</groupId>
95                                 <artifactId>maven-deploy-plugin</artifactId>
96                                 <configuration>
97                                         <skip>false</skip>
98                                 </configuration>
99                         </plugin>
100                         <plugin>
101                                 <groupId>org.codehaus.mojo</groupId>
102                                 <artifactId>appassembler-maven-plugin</artifactId>
103                                 <configuration>
104                                         <programs>
105                                                 <program>
106                                                         <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
107                                                         <id>locate</id>
108                                                         <commandLineArguments>
109                                                                 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.locate.props</commandLineArgument>
110                                                                 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/locate</commandLineArgument>
111                                                         </commandLineArguments>
112                                                 </program>
113                                         </programs>
114                                 </configuration>
115                         </plugin>
116                         <plugin>
117                                 <groupId>org.sonatype.plugins</groupId>
118                                 <artifactId>nexus-staging-maven-plugin</artifactId>
119                                 <extensions>true</extensions>
120                                 <configuration>
121                                         <nexusUrl>${nexusproxy}</nexusUrl>
122                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
123                                         <serverId>ecomp-staging</serverId>
124                                 </configuration>
125                         </plugin>
126                         <plugin>
127                                 <groupId>org.jacoco</groupId>
128                                 <artifactId>jacoco-maven-plugin</artifactId>
129                                 <configuration>
130                                         <excludes>
131                                                 <exclude>**/gen/**</exclude>
132                                                 <exclude>**/generated-sources/**</exclude>
133                                                 <exclude>**/yang-gen/**</exclude>
134                                                 <exclude>**/pax/**</exclude>
135                                         </excludes>
136                                 </configuration>
137                                 <executions>
138
139                                         <execution>
140                                                 <id>pre-unit-test</id>
141                                                 <goals>
142                                                         <goal>prepare-agent</goal>
143                                                 </goals>
144                                                 <configuration>
145                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
146                                                         <propertyName>surefireArgLine</propertyName>
147                                                 </configuration>
148                                         </execution>
149
150
151                                         <execution>
152                                                 <id>post-unit-test</id>
153                                                 <phase>test</phase>
154                                                 <goals>
155                                                         <goal>report</goal>
156                                                 </goals>
157                                                 <configuration>
158                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
159                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
160                                                 </configuration>
161                                         </execution>
162                                         <execution>
163                                                 <id>pre-integration-test</id>
164                                                 <phase>pre-integration-test</phase>
165                                                 <goals>
166                                                         <goal>prepare-agent</goal>
167                                                 </goals>
168                                                 <configuration>
169                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
170                                                         <propertyName>failsafeArgLine</propertyName>
171                                                 </configuration>
172                                         </execution>
173
174                                         <execution>
175                                                 <id>post-integration-test</id>
176                                                 <phase>post-integration-test</phase>
177                                                 <goals>
178                                                         <goal>report</goal>
179                                                 </goals>
180                                                 <configuration>
181                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
182                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
183                                                 </configuration>
184                                         </execution>
185                                 </executions>
186                         </plugin>
187                 </plugins>
188         </build>
189
190         <distributionManagement>
191                 <repository>
192                         <id>ecomp-releases</id>
193                         <name>AAF Release Repository</name>
194                         <url>${nexusproxy}${releaseNexusPath}</url>
195                 </repository>
196                 <snapshotRepository>
197                         <id>ecomp-snapshots</id>
198                         <name>AAF Snapshot Repository</name>
199                         <url>${nexusproxy}${snapshotNexusPath}</url>
200                 </snapshotRepository>
201                 <site>
202                         <id>ecomp-site</id>
203                         <url>dav:${nexusproxy}${sitePath}</url>
204                 </site>
205         </distributionManagement>
206 </project>