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