808414ccfba1a55a505e866563e6fca46096db2f
[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.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-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.auth</groupId>
51                         <artifactId>aaf-auth-core</artifactId>
52                 </dependency>
53
54                 <dependency>
55                         <groupId>org.onap.aaf.authz.auth</groupId>
56                         <artifactId>aaf-auth-cass</artifactId>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.onap.aaf.authz.cadi</groupId>
61                         <artifactId>aaf-cadi-aaf</artifactId>
62                 </dependency>
63         </dependencies>
64
65         <build>
66                 <plugins>
67                         <plugin>
68                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
69                                 <artifactId>maven-jaxb2-plugin</artifactId>
70                                 <version>0.8.2</version>
71                                 <executions>
72                                         <execution>
73                                                 <goals>
74                                                         <goal>generate</goal>
75                                                 </goals>
76                                         </execution>
77                                 </executions>
78                                 <configuration>
79                                         <schemaDirectory>src/main/xsd</schemaDirectory>
80                                 </configuration>
81                         </plugin>
82
83
84                         <plugin>
85                                 <groupId>org.apache.maven.plugins</groupId>
86                                 <artifactId>maven-deploy-plugin</artifactId>
87                                 <configuration>
88                                         <skip>false</skip>
89                                 </configuration>
90                         </plugin>
91                         <plugin>
92                                 <groupId>org.codehaus.mojo</groupId>
93                                 <artifactId>appassembler-maven-plugin</artifactId>
94                                 <configuration>
95                                         <programs>
96                                                 <program>
97                                                         <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
98                                                         <id>locate</id>
99                                                         <commandLineArguments>
100                                                                 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.locate.props</commandLineArgument>
101                                                         </commandLineArguments>
102                                                 </program>
103                                         </programs>
104                                 </configuration>
105                         </plugin>
106                         <plugin>
107                                 <groupId>org.sonatype.plugins</groupId>
108                                 <artifactId>nexus-staging-maven-plugin</artifactId>
109                                 <version>1.6.7</version>
110                                 <extensions>true</extensions>
111                                 <configuration>
112                                         <nexusUrl>${nexusproxy}</nexusUrl>
113                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
114                                         <serverId>ecomp-staging</serverId>
115                                 </configuration>
116                         </plugin>
117                         <plugin>
118                                 <groupId>org.jacoco</groupId>
119                                 <artifactId>jacoco-maven-plugin</artifactId>
120                                 <version>${jacoco.version}</version>
121                                 <configuration>
122                                         <excludes>
123                                                 <exclude>**/gen/**</exclude>
124                                                 <exclude>**/generated-sources/**</exclude>
125                                                 <exclude>**/yang-gen/**</exclude>
126                                                 <exclude>**/pax/**</exclude>
127                                         </excludes>
128                                 </configuration>
129                                 <executions>
130
131                                         <execution>
132                                                 <id>pre-unit-test</id>
133                                                 <goals>
134                                                         <goal>prepare-agent</goal>
135                                                 </goals>
136                                                 <configuration>
137                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
138                                                         <propertyName>surefireArgLine</propertyName>
139                                                 </configuration>
140                                         </execution>
141
142
143                                         <execution>
144                                                 <id>post-unit-test</id>
145                                                 <phase>test</phase>
146                                                 <goals>
147                                                         <goal>report</goal>
148                                                 </goals>
149                                                 <configuration>
150                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
151                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
152                                                 </configuration>
153                                         </execution>
154                                         <execution>
155                                                 <id>pre-integration-test</id>
156                                                 <phase>pre-integration-test</phase>
157                                                 <goals>
158                                                         <goal>prepare-agent</goal>
159                                                 </goals>
160                                                 <configuration>
161                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
162                                                         <propertyName>failsafeArgLine</propertyName>
163                                                 </configuration>
164                                         </execution>
165
166                                         <execution>
167                                                 <id>post-integration-test</id>
168                                                 <phase>post-integration-test</phase>
169                                                 <goals>
170                                                         <goal>report</goal>
171                                                 </goals>
172                                                 <configuration>
173                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
174                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
175                                                 </configuration>
176                                         </execution>
177                                 </executions>
178                         </plugin>
179                 </plugins>
180         </build>
181
182         <distributionManagement>
183                 <repository>
184                         <id>ecomp-releases</id>
185                         <name>AAF Release Repository</name>
186                         <url>${nexusproxy}${releaseNexusPath}</url>
187                 </repository>
188                 <snapshotRepository>
189                         <id>ecomp-snapshots</id>
190                         <name>AAF Snapshot Repository</name>
191                         <url>${nexusproxy}${snapshotNexusPath}</url>
192                 </snapshotRepository>
193                 <site>
194                         <id>ecomp-site</id>
195                         <url>dav:${nexusproxy}${sitePath}</url>
196                 </site>
197         </distributionManagement>
198 </project>