f1e34a77ce11c0a0a245fa936c70a51d8f59b77a
[aaf/authz.git] / authz-cass / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START====================================================\r
4   * org.onap.aaf\r
5   * ===========================================================================\r
6   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
7   * ===========================================================================\r
8   * Licensed under the Apache License, Version 2.0 (the "License");\r
9   * you may not use this file except in compliance with the License.\r
10   * You may obtain a copy of the License at\r
11   * \r
12    *      http://www.apache.org/licenses/LICENSE-2.0\r
13   * \r
14    * Unless required by applicable law or agreed to in writing, software\r
15   * distributed under the License is distributed on an "AS IS" BASIS,\r
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17   * See the License for the specific language governing permissions and\r
18   * limitations under the License.\r
19   * ============LICENSE_END====================================================\r
20   *\r
21   * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22   *\r
23 -->\r
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
25         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
26         <modelVersion>4.0.0</modelVersion>\r
27         <parent>\r
28                 <groupId>org.onap.aaf.authz</groupId>\r
29                 <artifactId>parent</artifactId>\r
30                 <version>1.0.0-SNAPSHOT</version>\r
31                 <relativePath>../pom.xml</relativePath>\r
32         </parent>\r
33                 \r
34         <artifactId>authz-cass</artifactId>\r
35         <name>Authz Cass</name>\r
36         <description>Cassandra DAOs for Authz</description>\r
37         <packaging>jar</packaging>\r
38                 <url>https://github.com/att/AAF</url>\r
39         <licenses>\r
40                 <license>\r
41                 <name>BSD License</name>\r
42                 <url> </url>\r
43                 </license>\r
44         </licenses>\r
45         <developers>\r
46                 <developer>\r
47                 <name>Jonathan Gathman</name>\r
48                 <email></email>\r
49         <organization>ATT</organization>\r
50         <organizationUrl></organizationUrl>\r
51                 </developer>\r
52         </developers>\r
53                 <properties>\r
54                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
55                 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
56         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
57                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
58                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
59                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
60                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>\r
61         </properties>\r
62         <dependencies>\r
63                 <dependency>\r
64                         <groupId>org.onap.aaf.authz</groupId>\r
65                         <artifactId>authz-core</artifactId>\r
66                 </dependency>\r
67 \r
68                 <dependency>\r
69                         <groupId>org.onap.aaf.cadi</groupId>\r
70                         <artifactId>cadi-aaf</artifactId>\r
71                 </dependency>\r
72 \r
73         <dependency>\r
74                         <groupId>com.datastax.cassandra</groupId>\r
75                         <artifactId>cassandra-driver-core</artifactId>\r
76                 </dependency>   \r
77                 \r
78                 <!-- Cassandra prefers Snappy and LZ4 libs for performance -->\r
79                 <dependency>\r
80                   <groupId>org.xerial.snappy</groupId>\r
81                   <artifactId>snappy-java</artifactId>\r
82                   <version>1.1.1-M1</version>\r
83                 </dependency>\r
84                 \r
85                 <dependency>\r
86                   <groupId>net.jpountz.lz4</groupId>\r
87                   <artifactId>lz4</artifactId>\r
88                   <version>1.2.0</version>\r
89                 </dependency>\r
90                 \r
91                 <dependency>\r
92           <groupId>com.googlecode.jcsv</groupId>\r
93           <artifactId>jcsv</artifactId>\r
94           <version>1.4.0</version>\r
95                 </dependency>\r
96                 \r
97                 <dependency>\r
98                         <groupId>org.slf4j</groupId>\r
99                         <artifactId>slf4j-log4j12</artifactId>\r
100                 <scope>test</scope>\r
101                 </dependency>\r
102                 \r
103         \r
104         </dependencies>\r
105         <build>\r
106                 <plugins>\r
107                         <plugin>\r
108                                 <groupId>org.apache.maven.plugins</groupId>\r
109                                 <artifactId>maven-jarsigner-plugin</artifactId>\r
110                         </plugin>\r
111                         <plugin>\r
112                                 <groupId>org.apache.maven.plugins</groupId>\r
113                                 <artifactId>maven-deploy-plugin</artifactId>\r
114                     </plugin>\r
115                 \r
116                 <plugin>\r
117                         <groupId>org.apache.maven.plugins</groupId>\r
118                         <artifactId>maven-javadoc-plugin</artifactId>\r
119                         <configuration>\r
120                         <failOnError>false</failOnError>\r
121                         </configuration>\r
122                         <executions>\r
123                                 <execution>\r
124                                         <id>attach-javadocs</id>\r
125                                         <goals>\r
126                                                 <goal>jar</goal>\r
127                                         </goals>\r
128                                 </execution>\r
129                         </executions>\r
130                 </plugin> \r
131            \r
132            \r
133                <plugin>\r
134                       <groupId>org.apache.maven.plugins</groupId>\r
135                       <artifactId>maven-source-plugin</artifactId>\r
136                       <version>2.2.1</version>\r
137                       <executions>\r
138                         <execution>\r
139                           <id>attach-sources</id>\r
140                           <goals>\r
141                             <goal>jar-no-fork</goal>\r
142                           </goals>\r
143                         </execution>\r
144                       </executions>\r
145                     </plugin>\r
146 <plugin>\r
147                                 <groupId>org.sonatype.plugins</groupId>\r
148                                 <artifactId>nexus-staging-maven-plugin</artifactId>\r
149                                 <version>1.6.7</version>\r
150                                 <extensions>true</extensions>\r
151                                 <configuration>\r
152                                         <nexusUrl>${nexusproxy}</nexusUrl>\r
153                                         <stagingProfileId>176c31dfe190a</stagingProfileId>\r
154                                         <serverId>ecomp-staging</serverId>\r
155                                 </configuration>\r
156                         </plugin>\r
157                 </plugins>\r
158         </build>\r
159         <distributionManagement>\r
160                 <repository>\r
161                         <id>ecomp-releases</id>\r
162                         <name>AAF Release Repository</name>\r
163                         <url>${nexusproxy}${releaseNexusPath}</url>\r
164                 </repository>\r
165                 <snapshotRepository>\r
166                         <id>ecomp-snapshots</id>\r
167                         <name>AAF Snapshot Repository</name>\r
168                         <url>${nexusproxy}${snapshotNexusPath}</url>\r
169                 </snapshotRepository>\r
170                 <site>\r
171                         <id>ecomp-site</id>\r
172                         <url>dav:${nexusproxy}${sitePath}</url>\r
173                 </site>\r
174         </distributionManagement>\r
175 <pluginRepositories>\r
176         <pluginRepository>\r
177             <id>onap-plugin-snapshots</id>\r
178             <url>https://nexus.onap.org/content/repositories/snapshots/</url>\r
179         </pluginRepository>\r
180     </pluginRepositories>\r
181         \r
182         <repositories>\r
183                 <repository>\r
184                         <id>central</id>\r
185                         <name>Maven 2 repository 2</name>\r
186                         <url>http://repo2.maven.org/maven2/</url>\r
187                 </repository>\r
188                 <repository>\r
189             <id>onap-jar-snapshots</id>\r
190             <url>https://nexus.onap.org/content/repositories/snapshots</url>\r
191         </repository>\r
192                 <repository>\r
193                         <id>spring-repo</id>\r
194                         <name>Spring repo</name>\r
195                         <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>\r
196                 </repository>\r
197                 <repository>\r
198                         <id>repository.jboss.org-public</id>\r
199                         <name>JBoss.org Maven repository</name>\r
200                         <url>https://repository.jboss.org/nexus/content/groups/public</url>\r
201                 </repository>\r
202         </repositories> \r
203 </project>\r
204 \r