blob: f1e34a77ce11c0a0a245fa936c70a51d8f59b77a [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>
56 <nexusproxy>https://nexus.onap.org</nexusproxy>
57 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
58 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
59 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
60 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
61 </properties>
62 <dependencies>
63 <dependency>
64 <groupId>org.onap.aaf.authz</groupId>
65 <artifactId>authz-core</artifactId>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onap.aaf.cadi</groupId>
70 <artifactId>cadi-aaf</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>com.datastax.cassandra</groupId>
75 <artifactId>cassandra-driver-core</artifactId>
76 </dependency>
77
78 <!-- Cassandra prefers Snappy and LZ4 libs for performance -->
79 <dependency>
80 <groupId>org.xerial.snappy</groupId>
81 <artifactId>snappy-java</artifactId>
82 <version>1.1.1-M1</version>
83 </dependency>
84
85 <dependency>
86 <groupId>net.jpountz.lz4</groupId>
87 <artifactId>lz4</artifactId>
88 <version>1.2.0</version>
89 </dependency>
90
91 <dependency>
92 <groupId>com.googlecode.jcsv</groupId>
93 <artifactId>jcsv</artifactId>
94 <version>1.4.0</version>
95 </dependency>
96
97 <dependency>
98 <groupId>org.slf4j</groupId>
99 <artifactId>slf4j-log4j12</artifactId>
100 <scope>test</scope>
101 </dependency>
102
103
104 </dependencies>
105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-jarsigner-plugin</artifactId>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-deploy-plugin</artifactId>
114 </plugin>
115
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-javadoc-plugin</artifactId>
119 <configuration>
120 <failOnError>false</failOnError>
121 </configuration>
122 <executions>
123 <execution>
124 <id>attach-javadocs</id>
125 <goals>
126 <goal>jar</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
131
132
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-source-plugin</artifactId>
136 <version>2.2.1</version>
137 <executions>
138 <execution>
139 <id>attach-sources</id>
140 <goals>
141 <goal>jar-no-fork</goal>
142 </goals>
143 </execution>
144 </executions>
145 </plugin>
146<plugin>
147 <groupId>org.sonatype.plugins</groupId>
148 <artifactId>nexus-staging-maven-plugin</artifactId>
149 <version>1.6.7</version>
150 <extensions>true</extensions>
151 <configuration>
152 <nexusUrl>${nexusproxy}</nexusUrl>
153 <stagingProfileId>176c31dfe190a</stagingProfileId>
154 <serverId>ecomp-staging</serverId>
155 </configuration>
156 </plugin>
157 </plugins>
158 </build>
159 <distributionManagement>
160 <repository>
161 <id>ecomp-releases</id>
162 <name>AAF Release Repository</name>
163 <url>${nexusproxy}${releaseNexusPath}</url>
164 </repository>
165 <snapshotRepository>
166 <id>ecomp-snapshots</id>
167 <name>AAF Snapshot Repository</name>
168 <url>${nexusproxy}${snapshotNexusPath}</url>
169 </snapshotRepository>
170 <site>
171 <id>ecomp-site</id>
172 <url>dav:${nexusproxy}${sitePath}</url>
173 </site>
174 </distributionManagement>
175<pluginRepositories>
176 <pluginRepository>
177 <id>onap-plugin-snapshots</id>
178 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
179 </pluginRepository>
180 </pluginRepositories>
181
182 <repositories>
183 <repository>
184 <id>central</id>
185 <name>Maven 2 repository 2</name>
186 <url>http://repo2.maven.org/maven2/</url>
187 </repository>
188 <repository>
189 <id>onap-jar-snapshots</id>
190 <url>https://nexus.onap.org/content/repositories/snapshots</url>
191 </repository>
192 <repository>
193 <id>spring-repo</id>
194 <name>Spring repo</name>
195 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
196 </repository>
197 <repository>
198 <id>repository.jboss.org-public</id>
199 <name>JBoss.org Maven repository</name>
200 <url>https://repository.jboss.org/nexus/content/groups/public</url>
201 </repository>
202 </repositories>
203</project>
204