blob: a82fbc7af980be40f06aa4fd5c63f3dac11cd624 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
gabe.maurer2e233282018-04-03 11:18:38 -05002<!-- * ============LICENSE_START====================================================
Instrumentale9ae0482019-08-02 14:46:27 -05003 * 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 * -->
Instrumental71037c32018-03-26 13:51:48 -070014<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Instrumentale9ae0482019-08-02 14:46:27 -050015 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>
Hassan, Sean (sh265m)55789c52020-08-27 16:22:05 -050020 <version>2.7.1-SNAPSHOT</version>
Instrumentale9ae0482019-08-02 14:46:27 -050021 <relativePath>../pom.xml</relativePath>
22 </parent>
Instrumental71037c32018-03-26 13:51:48 -070023
Instrumentale9ae0482019-08-02 14:46:27 -050024 <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.maurer2e233282018-04-03 11:18:38 -050028
Instrumentale9ae0482019-08-02 14:46:27 -050029 <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>
Instrumentale9ae0482019-08-02 14:46:27 -050040 <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>
Instrumental71037c32018-03-26 13:51:48 -070048
Instrumentale9ae0482019-08-02 14:46:27 -050049 <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.maurer2e233282018-04-03 11:18:38 -050067
Instrumentale9ae0482019-08-02 14:46:27 -050068 <dependencies>
69 <dependency>
70 <groupId>org.onap.aaf.authz</groupId>
71 <artifactId>aaf-auth-core</artifactId>
72 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070073
Instrumentale9ae0482019-08-02 14:46:27 -050074 <dependency>
75 <groupId>org.onap.aaf.authz</groupId>
76 <artifactId>aaf-cadi-aaf</artifactId>
77 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070078
Instrumentale9ae0482019-08-02 14:46:27 -050079 <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>
Instrumental71037c32018-03-26 13:51:48 -070096
Instrumentale9ae0482019-08-02 14:46:27 -050097 <dependency>
98 <groupId>com.google.guava</groupId>
99 <artifactId>guava</artifactId>
100 </dependency>
Instrumental9f52db12018-08-31 09:53:21 -0500101
Instrumentale9ae0482019-08-02 14:46:27 -0500102 <!-- 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>
Instrumental71037c32018-03-26 13:51:48 -0700108
Instrumentale9ae0482019-08-02 14:46:27 -0500109 <dependency>
110 <groupId>net.jpountz.lz4</groupId>
111 <artifactId>lz4</artifactId>
112 <version>1.2.0</version>
113 </dependency>
Instrumental71037c32018-03-26 13:51:48 -0700114
Instrumentale9ae0482019-08-02 14:46:27 -0500115 <dependency>
116 <groupId>com.googlecode.jcsv</groupId>
117 <artifactId>jcsv</artifactId>
118 <version>1.4.0</version>
119 </dependency>
Instrumental71037c32018-03-26 13:51:48 -0700120
Instrumentale9ae0482019-08-02 14:46:27 -0500121 <dependency>
122 <groupId>org.slf4j</groupId>
123 <artifactId>slf4j-log4j12</artifactId>
124 <scope>test</scope>
125 </dependency>
Sean Hassanb6106cf2020-05-21 16:22:11 -0500126 <dependency>
127 <groupId>org.onap.aaf.authz</groupId>
128 <artifactId>aaf-auth-deforg</artifactId>
129 <scope>test</scope>
130 </dependency>
Instrumentale9ae0482019-08-02 14:46:27 -0500131 </dependencies>
132 <build>
133 <plugins>
134 <plugin>
135 <groupId>org.jacoco</groupId>
136 <artifactId>jacoco-maven-plugin</artifactId>
137 <configuration>
138 <excludes>
139 <exclude>**/gen/**</exclude>
140 <exclude>**/generated-sources/**</exclude>
141 <exclude>**/yang-gen/**</exclude>
142 <exclude>**/pax/**</exclude>
143 </excludes>
144 </configuration>
145 <executions>
146
147 <execution>
148 <id>pre-unit-test</id>
149 <goals>
150 <goal>prepare-agent</goal>
151 </goals>
152 <configuration>
153 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
154 <propertyName>surefireArgLine</propertyName>
155 </configuration>
156 </execution>
Instrumental71037c32018-03-26 13:51:48 -0700157
158
Instrumentale9ae0482019-08-02 14:46:27 -0500159 <execution>
160 <id>post-unit-test</id>
161 <phase>test</phase>
162 <goals>
163 <goal>report</goal>
164 </goals>
165 <configuration>
166 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
167 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
168 </configuration>
169 </execution>
170 <execution>
171 <id>pre-integration-test</id>
172 <phase>pre-integration-test</phase>
173 <goals>
174 <goal>prepare-agent</goal>
175 </goals>
176 <configuration>
177 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
178 <propertyName>failsafeArgLine</propertyName>
179 </configuration>
180 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500181
Instrumentale9ae0482019-08-02 14:46:27 -0500182 <execution>
183 <id>post-integration-test</id>
184 <phase>post-integration-test</phase>
185 <goals>
186 <goal>report</goal>
187 </goals>
188 <configuration>
189 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
190 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
191 </configuration>
192 </execution>
193 </executions>
194 </plugin>
195 </plugins>
196 </build>
gabe.maurer2e233282018-04-03 11:18:38 -0500197
Instrumentale9ae0482019-08-02 14:46:27 -0500198 <distributionManagement>
199 <repository>
200 <id>ecomp-releases</id>
201 <name>AAF Release Repository</name>
202 <url>${nexusproxy}${releaseNexusPath}</url>
203 </repository>
204 <snapshotRepository>
205 <id>ecomp-snapshots</id>
206 <name>AAF Snapshot Repository</name>
207 <url>${nexusproxy}${snapshotNexusPath}</url>
208 </snapshotRepository>
209 <site>
210 <id>ecomp-site</id>
211 <url>dav:${nexusproxy}${sitePath}</url>
212 </site>
213 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700214</project>
215