sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 1 | <!-- |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 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 | * |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 20 | --> |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Sai Gandham | 58a75a0 | 2018-04-06 15:20:29 -0500 | [diff] [blame] | 24 | <groupId>org.onap.aaf.authz</groupId> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 25 | <artifactId>parent</artifactId> |
Instrumental | b744025 | 2018-06-14 15:05:33 -0500 | [diff] [blame] | 26 | <version>2.1.2-SNAPSHOT</version> |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 27 | <name>AAF Overall Parent</name> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 28 | <packaging>pom</packaging> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 29 | |
| 30 | <parent> |
| 31 | <groupId>org.onap.oparent</groupId> |
| 32 | <artifactId>oparent</artifactId> |
| 33 | <version>1.1.0</version> |
| 34 | </parent> |
| 35 | |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 36 | <properties> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 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> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 42 | |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 43 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
| 44 | <!-- SONAR --> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 45 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
| 46 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 47 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 48 | <!-- Default Sonar configuration --> |
Sai Gandham | 61f8fdf | 2018-04-03 12:07:07 -0500 | [diff] [blame] | 49 | <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths> |
| 50 | <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 51 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list below --> |
| 52 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 53 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 54 | </properties> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 55 | <build> |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-deploy-plugin</artifactId> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 60 | <configuration> |
Sai Gandham | d97041c | 2018-04-03 01:57:59 -0500 | [diff] [blame] | 61 | <skip>false</skip> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 62 | </configuration> |
| 63 | </plugin> |
Sai Gandham | 095221f | 2018-03-28 03:41:06 +0000 | [diff] [blame] | 64 | <plugin> |
| 65 | <groupId>org.sonatype.plugins</groupId> |
| 66 | <artifactId>nexus-staging-maven-plugin</artifactId> |
Sai Gandham | 095221f | 2018-03-28 03:41:06 +0000 | [diff] [blame] | 67 | <extensions>true</extensions> |
| 68 | <configuration> |
| 69 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 70 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 71 | <serverId>ecomp-staging</serverId> |
| 72 | </configuration> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 73 | </plugin> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 74 | <plugin> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 75 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 76 | <artifactId>sonar-maven-plugin</artifactId> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 77 | </plugin> |
| 78 | <plugin> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 79 | <groupId>org.jacoco</groupId> |
| 80 | <artifactId>jacoco-maven-plugin</artifactId> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 81 | <configuration> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 82 | <excludes> |
| 83 | <exclude>**/gen/**</exclude> |
| 84 | <exclude>**/generated-sources/**</exclude> |
| 85 | <exclude>**/yang-gen/**</exclude> |
| 86 | <exclude>**/pax/**</exclude> |
| 87 | </excludes> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 88 | </configuration> |
| 89 | <executions> |
| 90 | <execution> |
| 91 | <id>pre-unit-test</id> |
| 92 | <goals> |
| 93 | <goal>prepare-agent</goal> |
| 94 | </goals> |
| 95 | <configuration> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 96 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 97 | <propertyName>surefireArgLine</propertyName> |
| 98 | </configuration> |
| 99 | </execution> |
| 100 | <execution> |
| 101 | <id>post-unit-test</id> |
| 102 | <phase>test</phase> |
| 103 | <goals> |
| 104 | <goal>report</goal> |
| 105 | </goals> |
| 106 | <configuration> |
| 107 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 108 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 109 | </configuration> |
| 110 | </execution> |
| 111 | <execution> |
| 112 | <id>pre-integration-test</id> |
| 113 | <phase>pre-integration-test</phase> |
| 114 | <goals> |
| 115 | <goal>prepare-agent</goal> |
| 116 | </goals> |
| 117 | <configuration> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 118 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 119 | <propertyName>failsafeArgLine</propertyName> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 120 | </configuration> |
| 121 | </execution> |
| 122 | <execution> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 123 | <id>post-integration-test</id> |
| 124 | <phase>post-integration-test</phase> |
| 125 | <goals> |
| 126 | <goal>report</goal> |
| 127 | </goals> |
| 128 | <configuration> |
| 129 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 130 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 131 | </configuration> |
| 132 | </execution> |
Instrumental | 95d2549 | 2018-04-02 18:48:10 -0500 | [diff] [blame] | 133 | </executions> |
| 134 | </plugin> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 135 | |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 136 | </plugins> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 137 | </build> |
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 138 | <modules> |
Instrumental | 1efda07 | 2018-04-24 07:08:05 -0500 | [diff] [blame] | 139 | <module>auth-client</module> |
Sai Gandham | 30dca6e | 2018-04-09 21:22:48 +0000 | [diff] [blame] | 140 | <module>misc</module> |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 141 | <module>cadi</module> |
Sai Gandham | 30dca6e | 2018-04-09 21:22:48 +0000 | [diff] [blame] | 142 | <module>auth</module> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 143 | </modules> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 144 | |
Sai Gandham | 095221f | 2018-03-28 03:41:06 +0000 | [diff] [blame] | 145 | <distributionManagement> |
| 146 | <repository> |
| 147 | <id>ecomp-releases</id> |
| 148 | <name>AAF Release Repository</name> |
| 149 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 150 | </repository> |
| 151 | <snapshotRepository> |
| 152 | <id>ecomp-snapshots</id> |
| 153 | <name>AAF Snapshot Repository</name> |
| 154 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 155 | </snapshotRepository> |
| 156 | <site> |
| 157 | <id>ecomp-site</id> |
| 158 | <url>dav:${nexusproxy}${sitePath}</url> |
| 159 | </site> |
| 160 | </distributionManagement> |
IanHowell | 3901cf8 | 2018-04-03 11:24:27 -0500 | [diff] [blame] | 161 | |
| 162 | </project> |