blob: c8a8a3afb545bf702023af55743f1f16d8f2cda7 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 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-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.aaf.auth</groupId>
27 <artifactId>parent</artifactId>
28 <version>2.1.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>aaf-auth-cass</artifactId>
33 <name>AAF Auth Cass</name>
34 <description>Cassandra Data Libraries for AAF Auth</description>
35 <packaging>jar</packaging>
36
37 <developers>
38 <developer>
39 <name>Jonathan Gathman</name>
40 <email>jonathan.gathman@att.com</email>
41 <organization>ATT</organization>
42 <roles>
43 <role>Architect</role>
44 <role>Lead Developer</role>
45 </roles>
46 </developer>
47 <developer>
48 <name>Gabe Maurer</name>
49 <email>gabe.maurer@att.com</email>
50 <organization>ATT</organization>
51 <roles>
52 <role>Developer</role>
53 </roles>
54 </developer>
55 <developer>
56 <name>Ian Howell</name>
57 <email>ian.howell@att.com</email>
58 <organization>ATT</organization>
59 <roles>
60 <role>Developer</role>
61 </roles>
62 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000063 <developer>
64 <name>Sai Gandham</name>
65 <email>sai.gandham@att.com</email>
66 <organization>ATT</organization>
67 <roles>
68 <role>Developer</role>
69 </roles>
70 </developer>
Instrumental71037c32018-03-26 13:51:48 -070071 </developers>
72
73
74 <dependencies>
75 <dependency>
76 <groupId>org.onap.aaf.auth</groupId>
77 <artifactId>aaf-auth-core</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onap.aaf.cadi</groupId>
82 <artifactId>aaf-cadi-aaf</artifactId>
83 </dependency>
84
85 <dependency>
86 <groupId>com.datastax.cassandra</groupId>
87 <artifactId>cassandra-driver-core</artifactId>
88 </dependency>
89
90 <!-- Cassandra prefers Snappy and LZ4 libs for performance -->
91 <dependency>
92 <groupId>org.xerial.snappy</groupId>
93 <artifactId>snappy-java</artifactId>
94 <version>1.1.1-M1</version>
95 </dependency>
96
97 <dependency>
98 <groupId>net.jpountz.lz4</groupId>
99 <artifactId>lz4</artifactId>
100 <version>1.2.0</version>
101 </dependency>
102
103 <dependency>
104 <groupId>com.googlecode.jcsv</groupId>
105 <artifactId>jcsv</artifactId>
106 <version>1.4.0</version>
107 </dependency>
108
109 <dependency>
110 <groupId>org.slf4j</groupId>
111 <artifactId>slf4j-log4j12</artifactId>
112 <scope>test</scope>
113 </dependency>
114
115
116 </dependencies>
117</project>
118