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==================================================== |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 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" |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 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> |
| 18 | <groupId>org.onap.aaf.authz</groupId> |
| 19 | <artifactId>authparent</artifactId> |
John J. Franey | df9bf07 | 2020-04-20 16:30:20 -0400 | [diff] [blame^] | 20 | <version>2.1.20</version> |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 21 | <relativePath>../pom.xml</relativePath> |
| 22 | </parent> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 23 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 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 | e9ae048 | 2019-08-02 14:46:27 -0500 | [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> |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 40 | <name>Sai Gandham</name> |
| 41 | <email>sai.gandham@att.com</email> |
| 42 | <organization>ATT</organization> |
| 43 | <roles> |
| 44 | <role>Developer</role> |
| 45 | </roles> |
| 46 | </developer> |
| 47 | </developers> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 48 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 49 | <properties> |
| 50 | <!-- SONAR --> |
| 51 | <!-- <sonar.skip>true</sonar.skip> --> |
| 52 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
| 53 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 54 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 55 | <!-- Default Sonar configuration --> |
| 56 | <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths> |
| 57 | <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths> |
| 58 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list |
| 59 | below --> |
| 60 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
| 61 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 62 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 63 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 64 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
| 65 | <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath> |
| 66 | </properties> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 67 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 68 | <dependencies> |
| 69 | <dependency> |
| 70 | <groupId>org.onap.aaf.authz</groupId> |
| 71 | <artifactId>aaf-auth-core</artifactId> |
| 72 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 73 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>org.onap.aaf.authz</groupId> |
| 76 | <artifactId>aaf-cadi-aaf</artifactId> |
| 77 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 78 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>com.datastax.cassandra</groupId> |
| 81 | <artifactId>cassandra-driver-core</artifactId> |
| 82 | <!-- JNR Posix needs bumping up for licence for datastax 3.6.0, remove after this version--> |
| 83 | <exclusions> |
| 84 | <exclusion> |
| 85 | <groupId>com.github.jnr</groupId> |
| 86 | <artifactId>jnr-posix</artifactId> |
| 87 | </exclusion> |
| 88 | </exclusions> |
| 89 | </dependency> |
| 90 | <!-- JNR Posix needs bumping up for licence for datastax 3.6.0, remove after this version--> |
| 91 | <dependency> |
| 92 | <groupId>com.github.jnr</groupId> |
| 93 | <artifactId>jnr-posix</artifactId> |
| 94 | <version>3.0.45</version> |
| 95 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 96 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>com.google.guava</groupId> |
| 99 | <artifactId>guava</artifactId> |
| 100 | </dependency> |
Instrumental | 9f52db1 | 2018-08-31 09:53:21 -0500 | [diff] [blame] | 101 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 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> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 108 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>net.jpountz.lz4</groupId> |
| 111 | <artifactId>lz4</artifactId> |
| 112 | <version>1.2.0</version> |
| 113 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 114 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>com.googlecode.jcsv</groupId> |
| 117 | <artifactId>jcsv</artifactId> |
| 118 | <version>1.4.0</version> |
| 119 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 120 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>org.slf4j</groupId> |
| 123 | <artifactId>slf4j-log4j12</artifactId> |
| 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | </dependencies> |
| 127 | <build> |
| 128 | <plugins> |
| 129 | <plugin> |
| 130 | <groupId>org.jacoco</groupId> |
| 131 | <artifactId>jacoco-maven-plugin</artifactId> |
| 132 | <configuration> |
| 133 | <excludes> |
| 134 | <exclude>**/gen/**</exclude> |
| 135 | <exclude>**/generated-sources/**</exclude> |
| 136 | <exclude>**/yang-gen/**</exclude> |
| 137 | <exclude>**/pax/**</exclude> |
| 138 | </excludes> |
| 139 | </configuration> |
| 140 | <executions> |
| 141 | |
| 142 | <execution> |
| 143 | <id>pre-unit-test</id> |
| 144 | <goals> |
| 145 | <goal>prepare-agent</goal> |
| 146 | </goals> |
| 147 | <configuration> |
| 148 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 149 | <propertyName>surefireArgLine</propertyName> |
| 150 | </configuration> |
| 151 | </execution> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 152 | |
| 153 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 154 | <execution> |
| 155 | <id>post-unit-test</id> |
| 156 | <phase>test</phase> |
| 157 | <goals> |
| 158 | <goal>report</goal> |
| 159 | </goals> |
| 160 | <configuration> |
| 161 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 162 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
| 163 | </configuration> |
| 164 | </execution> |
| 165 | <execution> |
| 166 | <id>pre-integration-test</id> |
| 167 | <phase>pre-integration-test</phase> |
| 168 | <goals> |
| 169 | <goal>prepare-agent</goal> |
| 170 | </goals> |
| 171 | <configuration> |
| 172 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 173 | <propertyName>failsafeArgLine</propertyName> |
| 174 | </configuration> |
| 175 | </execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 176 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 177 | <execution> |
| 178 | <id>post-integration-test</id> |
| 179 | <phase>post-integration-test</phase> |
| 180 | <goals> |
| 181 | <goal>report</goal> |
| 182 | </goals> |
| 183 | <configuration> |
| 184 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 185 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 186 | </configuration> |
| 187 | </execution> |
| 188 | </executions> |
| 189 | </plugin> |
| 190 | </plugins> |
| 191 | </build> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 192 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 193 | <distributionManagement> |
| 194 | <repository> |
| 195 | <id>ecomp-releases</id> |
| 196 | <name>AAF Release Repository</name> |
| 197 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 198 | </repository> |
| 199 | <snapshotRepository> |
| 200 | <id>ecomp-snapshots</id> |
| 201 | <name>AAF Snapshot Repository</name> |
| 202 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 203 | </snapshotRepository> |
| 204 | <site> |
| 205 | <id>ecomp-site</id> |
| 206 | <url>dav:${nexusproxy}${sitePath}</url> |
| 207 | </site> |
| 208 | </distributionManagement> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 209 | </project> |
| 210 | |