blob: bea878c92b2169bb6542899a810371735171304a [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====================================================
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 * -->
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"
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>
Instrumental17ca7442018-03-29 16:54:19 -050018 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070019 <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.maurer2e233282018-04-03 11:18:38 -050028
Instrumental71037c32018-03-26 13:51:48 -070029 <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 Gandhame01703c2018-03-26 22:57:09 +000055 <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>
Instrumental71037c32018-03-26 13:51:48 -070063 </developers>
64
Sai Gandhamc434f3c2018-03-27 16:29:24 +000065 <properties>
Instrumental17ca7442018-03-29 16:54:19 -050066
67
gabe.maurer2e233282018-04-03 11:18:38 -050068
69 <!-- SONAR -->
Instrumental17ca7442018-03-29 16:54:19 -050070 <jacoco.version>0.7.7.201606060606</jacoco.version>
gabe.maurer2e233282018-04-03 11:18:38 -050071 <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 Gandhamc434f3c2018-03-27 16:29:24 +000079 <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.maurer2e233282018-04-03 11:18:38 -050085
Instrumental71037c32018-03-26 13:51:48 -070086 <dependencies>
87 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050088 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070089 <artifactId>aaf-auth-core</artifactId>
90 </dependency>
91
92 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050093 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070094 <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 Gandhamc434f3c2018-03-27 16:29:24 +0000129 <build>
gabe.maurer2e233282018-04-03 11:18:38 -0500130 <plugins>
131 <plugin>
Sai Gandham05c86472018-03-27 21:08:58 +0000132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-deploy-plugin</artifactId>
134 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500135 <skip>false</skip>
Sai Gandham05c86472018-03-27 21:08:58 +0000136 </configuration>
137 </plugin>
gabe.maurer2e233282018-04-03 11:18:38 -0500138 <plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000139 <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.maurer2e233282018-04-03 11:18:38 -0500148 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000149 <plugin>
150 <groupId>org.jacoco</groupId>
151 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500152 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000153 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500154 <excludes>
155 <exclude>**/gen/**</exclude>
156 <exclude>**/generated-sources/**</exclude>
157 <exclude>**/yang-gen/**</exclude>
158 <exclude>**/pax/**</exclude>
159 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000160 </configuration>
161 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500162
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000163 <execution>
164 <id>pre-unit-test</id>
165 <goals>
166 <goal>prepare-agent</goal>
167 </goals>
168 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500169 <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 Gandhamc434f3c2018-03-27 16:29:24 +0000184 </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.maurer2e233282018-04-03 11:18:38 -0500193 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
194 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000195 </configuration>
196 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500197
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000198 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500199 <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 Gandhamc434f3c2018-03-27 16:29:24 +0000209 </executions>
210 </plugin>
gabe.maurer2e233282018-04-03 11:18:38 -0500211 </plugins>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000212 </build>
gabe.maurer2e233282018-04-03 11:18:38 -0500213
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000214 <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>
Instrumental71037c32018-03-26 13:51:48 -0700230</project>
231