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