Move AAF Poms to 2.1.16
[aaf/authz.git] / auth / auth-cass / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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     * -->
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>
18         <groupId>org.onap.aaf.authz</groupId>
19         <artifactId>authparent</artifactId>
20         <version>2.1.16-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>
28
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>
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>
63     </developers>
64
65     <properties>
66         <!-- SONAR -->
67         <!-- <sonar.skip>true</sonar.skip> -->
68         <jacoco.version>0.7.7.201606060606</jacoco.version>
69         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
70         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
71         <!-- Default Sonar configuration -->
72         <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
73         <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
74         <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
75             below -->
76         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
77         <nexusproxy>https://nexus.onap.org</nexusproxy>
78         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
79         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
80         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
81         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
82     </properties>
83
84     <dependencies>
85         <dependency>
86             <groupId>org.onap.aaf.authz</groupId>
87             <artifactId>aaf-auth-core</artifactId>
88         </dependency>
89
90         <dependency>
91             <groupId>org.onap.aaf.authz</groupId>
92             <artifactId>aaf-cadi-aaf</artifactId>
93         </dependency>
94
95         <dependency>
96             <groupId>com.datastax.cassandra</groupId>
97             <artifactId>cassandra-driver-core</artifactId>
98             <!-- JNR Posix needs bumping up for licence for datastax 3.6.0, remove after this version-->
99             <exclusions>
100                 <exclusion>
101                     <groupId>com.github.jnr</groupId>
102                     <artifactId>jnr-posix</artifactId>
103                 </exclusion>
104             </exclusions>
105         </dependency>
106         <!-- JNR Posix needs bumping up for licence for datastax 3.6.0, remove after this version-->
107         <dependency>
108             <groupId>com.github.jnr</groupId>
109             <artifactId>jnr-posix</artifactId>
110             <version>3.0.45</version>
111         </dependency>
112
113         <dependency>
114             <groupId>com.google.guava</groupId>
115             <artifactId>guava</artifactId>
116         </dependency>
117
118         <!-- Cassandra prefers Snappy and LZ4 libs for performance -->
119         <dependency>
120             <groupId>org.xerial.snappy</groupId>
121             <artifactId>snappy-java</artifactId>
122             <version>1.1.1-M1</version>
123         </dependency>
124
125         <dependency>
126             <groupId>net.jpountz.lz4</groupId>
127             <artifactId>lz4</artifactId>
128             <version>1.2.0</version>
129         </dependency>
130
131         <dependency>
132             <groupId>com.googlecode.jcsv</groupId>
133             <artifactId>jcsv</artifactId>
134             <version>1.4.0</version>
135         </dependency>
136
137         <dependency>
138             <groupId>org.slf4j</groupId>
139             <artifactId>slf4j-log4j12</artifactId>
140             <scope>test</scope>
141         </dependency>
142     </dependencies>
143     <build>
144         <plugins>
145             <plugin>
146                 <groupId>org.jacoco</groupId>
147                 <artifactId>jacoco-maven-plugin</artifactId>
148                 <configuration>
149                     <excludes>
150                         <exclude>**/gen/**</exclude>
151                         <exclude>**/generated-sources/**</exclude>
152                         <exclude>**/yang-gen/**</exclude>
153                         <exclude>**/pax/**</exclude>
154                     </excludes>
155                 </configuration>
156                 <executions>
157
158                     <execution>
159                         <id>pre-unit-test</id>
160                         <goals>
161                             <goal>prepare-agent</goal>
162                         </goals>
163                         <configuration>
164                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
165                             <propertyName>surefireArgLine</propertyName>
166                         </configuration>
167                     </execution>
168
169
170                     <execution>
171                         <id>post-unit-test</id>
172                         <phase>test</phase>
173                         <goals>
174                             <goal>report</goal>
175                         </goals>
176                         <configuration>
177                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
178                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
179                         </configuration>
180                     </execution>
181                     <execution>
182                         <id>pre-integration-test</id>
183                         <phase>pre-integration-test</phase>
184                         <goals>
185                             <goal>prepare-agent</goal>
186                         </goals>
187                         <configuration>
188                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
189                             <propertyName>failsafeArgLine</propertyName>
190                         </configuration>
191                     </execution>
192
193                     <execution>
194                         <id>post-integration-test</id>
195                         <phase>post-integration-test</phase>
196                         <goals>
197                             <goal>report</goal>
198                         </goals>
199                         <configuration>
200                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
201                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
202                         </configuration>
203                     </execution>
204                 </executions>
205             </plugin>
206         </plugins>
207     </build>
208
209     <distributionManagement>
210         <repository>
211             <id>ecomp-releases</id>
212             <name>AAF Release Repository</name>
213             <url>${nexusproxy}${releaseNexusPath}</url>
214         </repository>
215         <snapshotRepository>
216             <id>ecomp-snapshots</id>
217             <name>AAF Snapshot Repository</name>
218             <url>${nexusproxy}${snapshotNexusPath}</url>
219         </snapshotRepository>
220         <site>
221             <id>ecomp-site</id>
222             <url>dav:${nexusproxy}${sitePath}</url>
223         </site>
224     </distributionManagement>
225 </project>
226