Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | * ============LICENSE_START==================================================== |
| 4 | * org.onap.aaf |
| 5 | * =========================================================================== |
| 6 | * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | * =========================================================================== |
| 8 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | * you may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, software |
| 15 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | * See the License for the specific language governing permissions and |
| 18 | * limitations under the License. |
| 19 | * ============LICENSE_END==================================================== |
| 20 | * |
| 21 | --> |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 26 | <groupId>org.onap.aaf.authz</groupId> |
| 27 | <artifactId>authparent</artifactId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 28 | <version>2.1.0-SNAPSHOT</version> |
| 29 | <relativePath>../pom.xml</relativePath> |
| 30 | </parent> |
| 31 | |
| 32 | <artifactId>auth-batch</artifactId> |
| 33 | <name>AAF Auth Batch</name> |
| 34 | <description>Batch Processing for AAF Auth</description> |
| 35 | <packaging>jar</packaging> |
| 36 | |
| 37 | <developers> |
| 38 | <developer> |
| 39 | <name>Jonathan Gathman</name> |
| 40 | <email>jonathan.gathman@att.com</email> |
| 41 | <organization>ATT</organization> |
| 42 | <roles> |
| 43 | <role>Architect</role> |
| 44 | <role>Lead Developer</role> |
| 45 | </roles> |
| 46 | </developer> |
| 47 | <developer> |
| 48 | <name>Gabe Maurer</name> |
| 49 | <email>gabe.maurer@att.com</email> |
| 50 | <organization>ATT</organization> |
| 51 | <roles> |
| 52 | <role>Developer</role> |
| 53 | </roles> |
| 54 | </developer> |
| 55 | <developer> |
| 56 | <name>Ian Howell</name> |
| 57 | <email>ian.howell@att.com</email> |
| 58 | <organization>ATT</organization> |
| 59 | <roles> |
| 60 | <role>Developer</role> |
| 61 | </roles> |
| 62 | </developer> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 63 | <developer> |
| 64 | <name>Sai Gandham</name> |
| 65 | <email>sai.gandham@att.com</email> |
| 66 | <organization>ATT</organization> |
| 67 | <roles> |
| 68 | <role>Developer</role> |
| 69 | </roles> |
| 70 | </developer> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 71 | </developers> |
| 72 | |
| 73 | <properties> |
Sai Gandham | 372e251 | 2018-04-01 16:42:58 -0500 | [diff] [blame] | 74 | |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 75 | |
| 76 | |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 77 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 78 | <!-- SONAR --> |
Sai Gandham | 1ef69d2 | 2018-04-03 16:25:33 -0500 | [diff] [blame] | 79 | <sonar.skip>true</sonar.skip> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 80 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
| 81 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 82 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 83 | <!-- Default Sonar configuration --> |
Sai Gandham | 61f8fdf | 2018-04-03 12:07:07 -0500 | [diff] [blame] | 84 | <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths> |
| 85 | <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 86 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list below --> |
| 87 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
| 88 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 89 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 90 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 91 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
Sai Gandham | 30dca6e | 2018-04-09 21:22:48 +0000 | [diff] [blame^] | 92 | <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 93 | </properties> |
| 94 | |
| 95 | <dependencies> |
| 96 | |
| 97 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 98 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 99 | <artifactId>aaf-misc-env</artifactId> |
su622b | 40077be | 2018-04-08 13:50:31 -0400 | [diff] [blame] | 100 | <version>${project.version}</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 104 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 105 | <artifactId>aaf-cadi-core</artifactId> |
su622b | 40077be | 2018-04-08 13:50:31 -0400 | [diff] [blame] | 106 | <version>${project.version}</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 110 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 111 | <artifactId>aaf-misc-rosetta</artifactId> |
su622b | 40077be | 2018-04-08 13:50:31 -0400 | [diff] [blame] | 112 | <version>${project.version}</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 113 | </dependency> |
| 114 | |
| 115 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 116 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 117 | <artifactId>aaf-cadi-aaf</artifactId> |
su622b | 40077be | 2018-04-08 13:50:31 -0400 | [diff] [blame] | 118 | <version>${project.version}</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 119 | </dependency> |
| 120 | |
| 121 | <dependency> |
Sai Gandham | 83fc025 | 2018-04-09 16:28:48 +0000 | [diff] [blame] | 122 | <groupId>org.onap.aaf.authz</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 123 | <artifactId>aaf-auth-cass</artifactId> |
su622b | 40077be | 2018-04-08 13:50:31 -0400 | [diff] [blame] | 124 | <version>${project.version}</version> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 125 | </dependency> |
| 126 | |
| 127 | <dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 128 | <groupId>org.slf4j</groupId> |
| 129 | <artifactId>slf4j-log4j12</artifactId> |
| 130 | </dependency> |
| 131 | |
| 132 | </dependencies> |
| 133 | |
| 134 | <build> |
| 135 | <plugins> |
| 136 | <plugin> |
| 137 | <groupId>org.apache.maven.plugins</groupId> |
| 138 | <artifactId>maven-compiler-plugin</artifactId> |
| 139 | <configuration> |
| 140 | <source>1.7</source> |
| 141 | <target>1.7</target> |
| 142 | </configuration> |
| 143 | </plugin> |
| 144 | |
| 145 | <plugin> |
| 146 | <groupId>org.apache.maven.plugins</groupId> |
| 147 | <artifactId>maven-deploy-plugin</artifactId> |
| 148 | <configuration> |
Sai Gandham | d97041c | 2018-04-03 01:57:59 -0500 | [diff] [blame] | 149 | <skip>false</skip> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 150 | </configuration> |
| 151 | </plugin> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 152 | <plugin> |
| 153 | <groupId>org.sonatype.plugins</groupId> |
| 154 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 155 | <version>1.6.7</version> |
| 156 | <extensions>true</extensions> |
| 157 | <configuration> |
| 158 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 159 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 160 | <serverId>ecomp-staging</serverId> |
| 161 | </configuration> |
| 162 | </plugin> |
| 163 | <plugin> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 164 | <groupId>org.jacoco</groupId> |
| 165 | <artifactId>jacoco-maven-plugin</artifactId> |
| 166 | <version>${jacoco.version}</version> |
| 167 | <configuration> |
| 168 | <excludes> |
| 169 | <exclude>**/gen/**</exclude> |
| 170 | <exclude>**/generated-sources/**</exclude> |
| 171 | <exclude>**/yang-gen/**</exclude> |
| 172 | <exclude>**/pax/**</exclude> |
| 173 | </excludes> |
| 174 | </configuration> |
| 175 | <executions> |
| 176 | |
| 177 | <execution> |
| 178 | <id>pre-unit-test</id> |
| 179 | <goals> |
| 180 | <goal>prepare-agent</goal> |
| 181 | </goals> |
| 182 | <configuration> |
| 183 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 184 | <propertyName>surefireArgLine</propertyName> |
| 185 | </configuration> |
| 186 | </execution> |
| 187 | |
| 188 | |
| 189 | <execution> |
| 190 | <id>post-unit-test</id> |
| 191 | <phase>test</phase> |
| 192 | <goals> |
| 193 | <goal>report</goal> |
| 194 | </goals> |
| 195 | <configuration> |
| 196 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 197 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
| 198 | </configuration> |
| 199 | </execution> |
| 200 | <execution> |
| 201 | <id>pre-integration-test</id> |
| 202 | <phase>pre-integration-test</phase> |
| 203 | <goals> |
| 204 | <goal>prepare-agent</goal> |
| 205 | </goals> |
| 206 | <configuration> |
| 207 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 208 | <propertyName>failsafeArgLine</propertyName> |
| 209 | </configuration> |
| 210 | </execution> |
| 211 | |
| 212 | <execution> |
| 213 | <id>post-integration-test</id> |
| 214 | <phase>post-integration-test</phase> |
| 215 | <goals> |
| 216 | <goal>report</goal> |
| 217 | </goals> |
| 218 | <configuration> |
| 219 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 220 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 221 | </configuration> |
| 222 | </execution> |
| 223 | </executions> |
| 224 | </plugin> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 225 | </plugins> |
| 226 | </build> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 227 | |
| 228 | <distributionManagement> |
| 229 | <repository> |
| 230 | <id>ecomp-releases</id> |
| 231 | <name>AAF Release Repository</name> |
| 232 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 233 | </repository> |
| 234 | <snapshotRepository> |
| 235 | <id>ecomp-snapshots</id> |
| 236 | <name>AAF Snapshot Repository</name> |
| 237 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 238 | </snapshotRepository> |
| 239 | <site> |
| 240 | <id>ecomp-site</id> |
| 241 | <url>dav:${nexusproxy}${sitePath}</url> |
| 242 | </site> |
| 243 | </distributionManagement> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 244 | </project> |