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