Keep only clean TestCases, remove 2 license issues
[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>org.onap.aaf.authz.authz</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                 <nexusproxy>https://nexus.onap.org</nexusproxy>
38                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
39                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
41                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
42         </properties>
43         <build>
44                 <plugins>
45                         <plugin>
46                                 <groupId>org.apache.maven.plugins</groupId>
47                                 <artifactId>maven-deploy-plugin</artifactId>
48                                 <configuration>
49                                         <skip>true</skip>
50                                 </configuration>
51                         </plugin>
52                         <plugin>
53                                 <groupId>org.sonatype.plugins</groupId>
54                                 <artifactId>nexus-staging-maven-plugin</artifactId>
55                                 <version>1.6.7</version>
56                                 <extensions>true</extensions>
57                                 <configuration>
58                                         <nexusUrl>${nexusproxy}</nexusUrl>
59                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
60                                         <serverId>ecomp-staging</serverId>
61                                 </configuration>
62                         </plugin>               
63                 <plugin>
64             <groupId>org.sonarsource.scanner.maven</groupId>
65             <artifactId>sonar-maven-plugin</artifactId>
66             <version>3.2</version>
67         </plugin>
68                 </plugins>
69     </build>    
70         <modules>
71                 <module>auth/auth-client</module>
72                 <module>misc</module>
73                 <module>cadi</module>
74                 <module>auth</module>
75         </modules>
76
77         <distributionManagement>
78                 <repository>
79                         <id>ecomp-releases</id>
80                         <name>AAF Release Repository</name>
81                         <url>${nexusproxy}${releaseNexusPath}</url>
82                 </repository>
83                 <snapshotRepository>
84                         <id>ecomp-snapshots</id>
85                         <name>AAF Snapshot Repository</name>
86                         <url>${nexusproxy}${snapshotNexusPath}</url>
87                 </snapshotRepository>
88                 <site>
89                         <id>ecomp-site</id>
90                         <url>dav:${nexusproxy}${sitePath}</url>
91                 </site>
92         </distributionManagement>
93         
94 </project>