Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 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 | * --> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 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> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 18 | <groupId>org.onap.aaf.authz</groupId> |
| 19 | <artifactId>authparent</artifactId> |
Instrumental | b744025 | 2018-06-14 15:05:33 -0500 | [diff] [blame] | 20 | <version>2.1.2-SNAPSHOT</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 21 | <relativePath>../pom.xml</relativePath> |
| 22 | </parent> |
| 23 | |
| 24 | <artifactId>aaf-auth-oauth</artifactId> |
| 25 | <name>AAF Auth OAuth Service</name> |
| 26 | <description>OAuth Component for AAF Auth</description> |
| 27 | |
| 28 | <properties> |
| 29 | <project.swmVersion>25</project.swmVersion> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 30 | <!-- SONAR --> |
Sai Gandham | f44b927 | 2018-04-12 16:42:07 +0000 | [diff] [blame] | 31 | <!-- <sonar.skip>true</sonar.skip> --> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 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 --> |
Sai Gandham | 61f8fdf | 2018-04-03 12:07:07 -0500 | [diff] [blame] | 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> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 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> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 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> |
Sai Gandham | 30dca6e | 2018-04-09 21:22:48 +0000 | [diff] [blame] | 45 | <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 46 | </properties> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 50 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 51 | <artifactId>aaf-auth-core</artifactId> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 55 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 56 | <artifactId>aaf-auth-cass</artifactId> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 60 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 61 | <artifactId>aaf-cadi-aaf</artifactId> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-jar-plugin</artifactId> |
| 70 | <configuration> |
| 71 | <includes> |
| 72 | <include>**/*.class</include> |
| 73 | </includes> |
| 74 | </configuration> |
| 75 | <version>2.3.1</version> |
| 76 | </plugin> |
| 77 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 78 | only. It has no influence on the Maven build itself. --> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-deploy-plugin</artifactId> |
| 82 | <configuration> |
Sai Gandham | d97041c | 2018-04-03 01:57:59 -0500 | [diff] [blame] | 83 | <skip>false</skip> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 84 | </configuration> |
| 85 | </plugin> |
| 86 | <plugin> |
| 87 | <groupId>org.codehaus.mojo</groupId> |
| 88 | <artifactId>appassembler-maven-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <programs> |
| 91 | <program> |
| 92 | <mainClass>org.onap.aaf.auth.oauth.AAF_OAuth</mainClass> |
| 93 | <name>oauth</name> |
| 94 | <commandLineArguments> |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 95 | <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.oauth.props</commandLineArgument> |
Instrumental | 924b18d | 2018-04-05 20:17:18 -0500 | [diff] [blame] | 96 | <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/oauth</commandLineArgument> |
Instrumental | 4ad4763 | 2018-07-13 15:49:26 -0500 | [diff] [blame] | 97 | <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 98 | </commandLineArguments> |
| 99 | </program> |
| 100 | </programs> |
| 101 | </configuration> |
| 102 | </plugin> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 103 | <plugin> |
| 104 | <groupId>org.sonatype.plugins</groupId> |
| 105 | <artifactId>nexus-staging-maven-plugin</artifactId> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 106 | <extensions>true</extensions> |
| 107 | <configuration> |
| 108 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 109 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 110 | <serverId>ecomp-staging</serverId> |
| 111 | </configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 112 | </plugin> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 113 | <plugin> |
| 114 | <groupId>org.jacoco</groupId> |
| 115 | <artifactId>jacoco-maven-plugin</artifactId> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 116 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 117 | <excludes> |
| 118 | <exclude>**/gen/**</exclude> |
| 119 | <exclude>**/generated-sources/**</exclude> |
| 120 | <exclude>**/yang-gen/**</exclude> |
| 121 | <exclude>**/pax/**</exclude> |
| 122 | </excludes> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 123 | </configuration> |
| 124 | <executions> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 125 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 126 | <execution> |
| 127 | <id>pre-unit-test</id> |
| 128 | <goals> |
| 129 | <goal>prepare-agent</goal> |
| 130 | </goals> |
| 131 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 132 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 133 | <propertyName>surefireArgLine</propertyName> |
| 134 | </configuration> |
| 135 | </execution> |
| 136 | |
| 137 | |
| 138 | <execution> |
| 139 | <id>post-unit-test</id> |
| 140 | <phase>test</phase> |
| 141 | <goals> |
| 142 | <goal>report</goal> |
| 143 | </goals> |
| 144 | <configuration> |
| 145 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 146 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 147 | </configuration> |
| 148 | </execution> |
| 149 | <execution> |
| 150 | <id>pre-integration-test</id> |
| 151 | <phase>pre-integration-test</phase> |
| 152 | <goals> |
| 153 | <goal>prepare-agent</goal> |
| 154 | </goals> |
| 155 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 156 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 157 | <propertyName>failsafeArgLine</propertyName> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 158 | </configuration> |
| 159 | </execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 160 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 161 | <execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 162 | <id>post-integration-test</id> |
| 163 | <phase>post-integration-test</phase> |
| 164 | <goals> |
| 165 | <goal>report</goal> |
| 166 | </goals> |
| 167 | <configuration> |
| 168 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 169 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 170 | </configuration> |
| 171 | </execution> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 172 | </executions> |
| 173 | </plugin> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 174 | </plugins> |
| 175 | </build> |
| 176 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 177 | <distributionManagement> |
| 178 | <repository> |
| 179 | <id>ecomp-releases</id> |
| 180 | <name>AAF Release Repository</name> |
| 181 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 182 | </repository> |
| 183 | <snapshotRepository> |
| 184 | <id>ecomp-snapshots</id> |
| 185 | <name>AAF Snapshot Repository</name> |
| 186 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 187 | </snapshotRepository> |
| 188 | <site> |
| 189 | <id>ecomp-site</id> |
| 190 | <url>dav:${nexusproxy}${sitePath}</url> |
| 191 | </site> |
| 192 | </distributionManagement> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 193 | |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 194 | </project> |