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/xsd/maven-4.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-cass</artifactId> |
| 25 | <name>AAF Auth Cass</name> |
| 26 | <description>Cassandra Data Libraries for AAF Auth</description> |
| 27 | <packaging>jar</packaging> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 28 | |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 29 | <developers> |
| 30 | <developer> |
| 31 | <name>Jonathan Gathman</name> |
| 32 | <email>jonathan.gathman@att.com</email> |
| 33 | <organization>ATT</organization> |
| 34 | <roles> |
| 35 | <role>Architect</role> |
| 36 | <role>Lead Developer</role> |
| 37 | </roles> |
| 38 | </developer> |
| 39 | <developer> |
| 40 | <name>Gabe Maurer</name> |
| 41 | <email>gabe.maurer@att.com</email> |
| 42 | <organization>ATT</organization> |
| 43 | <roles> |
| 44 | <role>Developer</role> |
| 45 | </roles> |
| 46 | </developer> |
| 47 | <developer> |
| 48 | <name>Ian Howell</name> |
| 49 | <email>ian.howell@att.com</email> |
| 50 | <organization>ATT</organization> |
| 51 | <roles> |
| 52 | <role>Developer</role> |
| 53 | </roles> |
| 54 | </developer> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 55 | <developer> |
| 56 | <name>Sai Gandham</name> |
| 57 | <email>sai.gandham@att.com</email> |
| 58 | <organization>ATT</organization> |
| 59 | <roles> |
| 60 | <role>Developer</role> |
| 61 | </roles> |
| 62 | </developer> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 63 | </developers> |
| 64 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 65 | <properties> |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 66 | |
| 67 | |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 68 | |
| 69 | <!-- SONAR --> |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 70 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 71 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 72 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 73 | <!-- Default Sonar configuration --> |
| 74 | <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath> |
| 75 | <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath> |
| 76 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list |
| 77 | below --> |
| 78 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 79 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 80 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 81 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 82 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
| 83 | <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath> |
| 84 | </properties> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 85 | |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 86 | <dependencies> |
| 87 | <dependency> |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 88 | <groupId>org.onap.aaf.authz.auth</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 89 | <artifactId>aaf-auth-core</artifactId> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 93 | <groupId>org.onap.aaf.authz.cadi</groupId> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 94 | <artifactId>aaf-cadi-aaf</artifactId> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>com.datastax.cassandra</groupId> |
| 99 | <artifactId>cassandra-driver-core</artifactId> |
| 100 | </dependency> |
| 101 | |
| 102 | <!-- Cassandra prefers Snappy and LZ4 libs for performance --> |
| 103 | <dependency> |
| 104 | <groupId>org.xerial.snappy</groupId> |
| 105 | <artifactId>snappy-java</artifactId> |
| 106 | <version>1.1.1-M1</version> |
| 107 | </dependency> |
| 108 | |
| 109 | <dependency> |
| 110 | <groupId>net.jpountz.lz4</groupId> |
| 111 | <artifactId>lz4</artifactId> |
| 112 | <version>1.2.0</version> |
| 113 | </dependency> |
| 114 | |
| 115 | <dependency> |
| 116 | <groupId>com.googlecode.jcsv</groupId> |
| 117 | <artifactId>jcsv</artifactId> |
| 118 | <version>1.4.0</version> |
| 119 | </dependency> |
| 120 | |
| 121 | <dependency> |
| 122 | <groupId>org.slf4j</groupId> |
| 123 | <artifactId>slf4j-log4j12</artifactId> |
| 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | |
| 127 | |
| 128 | </dependencies> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 129 | <build> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 130 | <plugins> |
| 131 | <plugin> |
Sai Gandham | 05c8647 | 2018-03-27 21:08:58 +0000 | [diff] [blame] | 132 | <groupId>org.apache.maven.plugins</groupId> |
| 133 | <artifactId>maven-deploy-plugin</artifactId> |
| 134 | <configuration> |
Sai Gandham | d97041c | 2018-04-03 01:57:59 -0500 | [diff] [blame] | 135 | <skip>false</skip> |
Sai Gandham | 05c8647 | 2018-03-27 21:08:58 +0000 | [diff] [blame] | 136 | </configuration> |
| 137 | </plugin> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 138 | <plugin> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 139 | <groupId>org.sonatype.plugins</groupId> |
| 140 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 141 | <version>1.6.7</version> |
| 142 | <extensions>true</extensions> |
| 143 | <configuration> |
| 144 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 145 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 146 | <serverId>ecomp-staging</serverId> |
| 147 | </configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 148 | </plugin> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 149 | <plugin> |
| 150 | <groupId>org.jacoco</groupId> |
| 151 | <artifactId>jacoco-maven-plugin</artifactId> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 152 | <version>${jacoco.version}</version> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 153 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 154 | <excludes> |
| 155 | <exclude>**/gen/**</exclude> |
| 156 | <exclude>**/generated-sources/**</exclude> |
| 157 | <exclude>**/yang-gen/**</exclude> |
| 158 | <exclude>**/pax/**</exclude> |
| 159 | </excludes> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 160 | </configuration> |
| 161 | <executions> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 162 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 163 | <execution> |
| 164 | <id>pre-unit-test</id> |
| 165 | <goals> |
| 166 | <goal>prepare-agent</goal> |
| 167 | </goals> |
| 168 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 169 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 170 | <propertyName>surefireArgLine</propertyName> |
| 171 | </configuration> |
| 172 | </execution> |
| 173 | |
| 174 | |
| 175 | <execution> |
| 176 | <id>post-unit-test</id> |
| 177 | <phase>test</phase> |
| 178 | <goals> |
| 179 | <goal>report</goal> |
| 180 | </goals> |
| 181 | <configuration> |
| 182 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 183 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 184 | </configuration> |
| 185 | </execution> |
| 186 | <execution> |
| 187 | <id>pre-integration-test</id> |
| 188 | <phase>pre-integration-test</phase> |
| 189 | <goals> |
| 190 | <goal>prepare-agent</goal> |
| 191 | </goals> |
| 192 | <configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 193 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 194 | <propertyName>failsafeArgLine</propertyName> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 195 | </configuration> |
| 196 | </execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 197 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 198 | <execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 199 | <id>post-integration-test</id> |
| 200 | <phase>post-integration-test</phase> |
| 201 | <goals> |
| 202 | <goal>report</goal> |
| 203 | </goals> |
| 204 | <configuration> |
| 205 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 206 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 207 | </configuration> |
| 208 | </execution> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 209 | </executions> |
| 210 | </plugin> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 211 | </plugins> |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 212 | </build> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame^] | 213 | |
Sai Gandham | c434f3c | 2018-03-27 16:29:24 +0000 | [diff] [blame] | 214 | <distributionManagement> |
| 215 | <repository> |
| 216 | <id>ecomp-releases</id> |
| 217 | <name>AAF Release Repository</name> |
| 218 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 219 | </repository> |
| 220 | <snapshotRepository> |
| 221 | <id>ecomp-snapshots</id> |
| 222 | <name>AAF Snapshot Repository</name> |
| 223 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 224 | </snapshotRepository> |
| 225 | <site> |
| 226 | <id>ecomp-site</id> |
| 227 | <url>dav:${nexusproxy}${sitePath}</url> |
| 228 | </site> |
| 229 | </distributionManagement> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 230 | </project> |
| 231 | |