Modify authz pom files.
[aaf/authz.git] / pom.xml
1 <!--
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23         <modelVersion>4.0.0</modelVersion>
24         <groupId>osaaf</groupId>
25         <artifactId>parent</artifactId>
26         <version>2.1.0-SNAPSHOT</version>
27         <name>AAF Overall Parent</name>
28         <packaging>pom</packaging>
29         
30         <parent>             
31         <groupId>org.onap.oparent</groupId>
32         <artifactId>oparent</artifactId>
33         <version>1.1.0</version>
34     </parent>
35         
36         <properties>
37         <!--  SONAR  -->
38                  <jacoco.version>0.7.7.201606060606</jacoco.version>
39             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
40             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
41             <!-- Default Sonar configuration -->
42             <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
43             <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
44             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
45             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
46                 <nexusproxy>https://nexus.onap.org</nexusproxy>
47                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
48                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
49                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
50                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
51         </properties>
52         <build>
53                 <plugins>
54                         <plugin>
55                                 <groupId>org.apache.maven.plugins</groupId>
56                                 <artifactId>maven-deploy-plugin</artifactId>
57                                 <configuration>
58                                         <skip>true</skip>
59                                 </configuration>
60                         </plugin>
61                 </plugins>
62     </build>    
63         <modules>
64                 <module>auth/auth-client</module>
65                 <module>misc</module>
66                 <module>cadi</module>
67                 <module>auth</module>
68         </modules>
69
70         <distributionManagement>
71                 <repository>
72                         <id>ecomp-releases</id>
73                         <name>AAF Release Repository</name>
74                         <url>${nexusproxy}${releaseNexusPath}</url>
75                 </repository>
76                 <snapshotRepository>
77                         <id>ecomp-snapshots</id>
78                         <name>AAF Snapshot Repository</name>
79                         <url>${nexusproxy}${snapshotNexusPath}</url>
80                 </snapshotRepository>
81                 <site>
82                         <id>ecomp-site</id>
83                         <url>dav:${nexusproxy}${sitePath}</url>
84                 </site>
85         </distributionManagement>
86         
87 </project>