blob: 1b25ab0d8a22c4a848c3151f0da4783e80274c06 [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.aaf.authz</groupId>
29 <artifactId>parent</artifactId>
30 <version>1.0.0-SNAPSHOT</version>
31 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-cass</artifactId>
35 <name>Authz Cass</name>
36 <description>Cassandra DAOs for Authz</description>
37 <packaging>jar</packaging>
38 <url>https://github.com/att/AAF</url>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
53 <properties>
54 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
55 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040056 <sonar.language>java</sonar.language>
57 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
58 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
59 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
60 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
61 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
62 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040063 <nexusproxy>https://nexus.onap.org</nexusproxy>
64 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
65 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
66 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
67 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
68 </properties>
69 <dependencies>
70 <dependency>
71 <groupId>org.onap.aaf.authz</groupId>
72 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040073 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040074 </dependency>
75
76 <dependency>
77 <groupId>org.onap.aaf.cadi</groupId>
78 <artifactId>cadi-aaf</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040079 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040080 </dependency>
81
82 <dependency>
83 <groupId>com.datastax.cassandra</groupId>
84 <artifactId>cassandra-driver-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040085 <version>2.1.10</version>
sg481nbd890c52017-08-28 12:11:35 -040086 </dependency>
87
88 <!-- Cassandra prefers Snappy and LZ4 libs for performance -->
89 <dependency>
90 <groupId>org.xerial.snappy</groupId>
91 <artifactId>snappy-java</artifactId>
92 <version>1.1.1-M1</version>
93 </dependency>
94
95 <dependency>
96 <groupId>net.jpountz.lz4</groupId>
97 <artifactId>lz4</artifactId>
98 <version>1.2.0</version>
99 </dependency>
100
101 <dependency>
102 <groupId>com.googlecode.jcsv</groupId>
103 <artifactId>jcsv</artifactId>
104 <version>1.4.0</version>
105 </dependency>
106
107 <dependency>
108 <groupId>org.slf4j</groupId>
109 <artifactId>slf4j-log4j12</artifactId>
110 <scope>test</scope>
111 </dependency>
112
113
114 </dependencies>
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-jarsigner-plugin</artifactId>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-deploy-plugin</artifactId>
124 </plugin>
125
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-javadoc-plugin</artifactId>
129 <configuration>
130 <failOnError>false</failOnError>
131 </configuration>
132 <executions>
133 <execution>
134 <id>attach-javadocs</id>
135 <goals>
136 <goal>jar</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
141
142
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-source-plugin</artifactId>
146 <version>2.2.1</version>
147 <executions>
148 <execution>
149 <id>attach-sources</id>
150 <goals>
151 <goal>jar-no-fork</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156<plugin>
157 <groupId>org.sonatype.plugins</groupId>
158 <artifactId>nexus-staging-maven-plugin</artifactId>
159 <version>1.6.7</version>
160 <extensions>true</extensions>
161 <configuration>
162 <nexusUrl>${nexusproxy}</nexusUrl>
163 <stagingProfileId>176c31dfe190a</stagingProfileId>
164 <serverId>ecomp-staging</serverId>
165 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400166 </plugin>
167 <plugin>
168 <groupId>org.jacoco</groupId>
169 <artifactId>jacoco-maven-plugin</artifactId>
170 <version>0.7.7.201606060606</version>
171 <configuration>
172 <dumpOnExit>true</dumpOnExit>
173 <includes>
174 <include>org.onap.aaf.*</include>
175 </includes>
176 </configuration>
177 <executions>
178 <execution>
179 <id>pre-unit-test</id>
180 <goals>
181 <goal>prepare-agent</goal>
182 </goals>
183 <configuration>
184 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
185 <!-- <append>true</append> -->
186 </configuration>
187 </execution>
188 <execution>
189 <id>pre-integration-test</id>
190 <phase>pre-integration-test</phase>
191 <goals>
192 <goal>prepare-agent</goal>
193 </goals>
194 <configuration>
195 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
196 <!-- <append>true</append> -->
197 </configuration>
198 </execution>
199 <execution>
200 <goals>
201 <goal>merge</goal>
202 </goals>
203 <phase>post-integration-test</phase>
204 <configuration>
205 <fileSets>
206 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
207 <directory>${project.build.directory}/coverage-reports</directory>
208 <includes>
209 <include>*.exec</include>
210 </includes>
211 </fileSet>
212 </fileSets>
213 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
214 </configuration>
215 </execution>
216 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400217 </plugin>
218 </plugins>
219 </build>
220 <distributionManagement>
221 <repository>
222 <id>ecomp-releases</id>
223 <name>AAF Release Repository</name>
224 <url>${nexusproxy}${releaseNexusPath}</url>
225 </repository>
226 <snapshotRepository>
227 <id>ecomp-snapshots</id>
228 <name>AAF Snapshot Repository</name>
229 <url>${nexusproxy}${snapshotNexusPath}</url>
230 </snapshotRepository>
231 <site>
232 <id>ecomp-site</id>
233 <url>dav:${nexusproxy}${sitePath}</url>
234 </site>
235 </distributionManagement>
236<pluginRepositories>
237 <pluginRepository>
238 <id>onap-plugin-snapshots</id>
239 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
240 </pluginRepository>
241 </pluginRepositories>
242
243 <repositories>
244 <repository>
245 <id>central</id>
246 <name>Maven 2 repository 2</name>
247 <url>http://repo2.maven.org/maven2/</url>
248 </repository>
249 <repository>
250 <id>onap-jar-snapshots</id>
251 <url>https://nexus.onap.org/content/repositories/snapshots</url>
252 </repository>
253 <repository>
254 <id>spring-repo</id>
255 <name>Spring repo</name>
256 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
257 </repository>
258 <repository>
259 <id>repository.jboss.org-public</id>
260 <name>JBoss.org Maven repository</name>
261 <url>https://repository.jboss.org/nexus/content/groups/public</url>
262 </repository>
263 </repositories>
264</project>
265