Create and prepare non-deploy release 2.7.1
[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.7.1-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>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>
48
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>
67
68     <dependencies>
69         <dependency>
70             <groupId>org.onap.aaf.authz</groupId>
71             <artifactId>aaf-auth-core</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>org.onap.aaf.authz</groupId>
76             <artifactId>aaf-cadi-aaf</artifactId>
77         </dependency>
78
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>
96
97         <dependency>
98             <groupId>com.google.guava</groupId>
99             <artifactId>guava</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         <dependency>
127             <groupId>org.onap.aaf.authz</groupId>
128             <artifactId>aaf-auth-deforg</artifactId>
129             <scope>test</scope>
130         </dependency>
131     </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>
157
158
159                     <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>
181
182                     <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>
197
198     <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>
214 </project>
215