blob: 7c99385eaae0c58a096e76c2e047be1bd3493bf6 [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>
sg481na2ac6782017-09-18 16:35:50 -040030 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040031 <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>
sg481na9d21082017-09-23 14:26:06 +000067 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040068 </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>
sg481na2ac6782017-09-18 16:35:50 -040079 <version>${project.cadiVersion}</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>
sg481na2ac6782017-09-18 16:35:50 -0400121
sg481na9d21082017-09-23 14:26:06 +0000122 <plugin>
sg481nbd890c52017-08-28 12:11:35 -0400123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000125 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400126 <configuration>
127 <failOnError>false</failOnError>
128 </configuration>
129 <executions>
130 <execution>
131 <id>attach-javadocs</id>
132 <goals>
133 <goal>jar</goal>
134 </goals>
135 </execution>
136 </executions>
137 </plugin>
138
139
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-source-plugin</artifactId>
143 <version>2.2.1</version>
144 <executions>
145 <execution>
146 <id>attach-sources</id>
147 <goals>
148 <goal>jar-no-fork</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153<plugin>
154 <groupId>org.sonatype.plugins</groupId>
155 <artifactId>nexus-staging-maven-plugin</artifactId>
156 <version>1.6.7</version>
157 <extensions>true</extensions>
158 <configuration>
159 <nexusUrl>${nexusproxy}</nexusUrl>
160 <stagingProfileId>176c31dfe190a</stagingProfileId>
161 <serverId>ecomp-staging</serverId>
162 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400163 </plugin>
164 <plugin>
165 <groupId>org.jacoco</groupId>
166 <artifactId>jacoco-maven-plugin</artifactId>
167 <version>0.7.7.201606060606</version>
168 <configuration>
169 <dumpOnExit>true</dumpOnExit>
170 <includes>
171 <include>org.onap.aaf.*</include>
172 </includes>
173 </configuration>
174 <executions>
175 <execution>
176 <id>pre-unit-test</id>
177 <goals>
178 <goal>prepare-agent</goal>
179 </goals>
180 <configuration>
181 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
182 <!-- <append>true</append> -->
183 </configuration>
184 </execution>
185 <execution>
186 <id>pre-integration-test</id>
187 <phase>pre-integration-test</phase>
188 <goals>
189 <goal>prepare-agent</goal>
190 </goals>
191 <configuration>
192 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
193 <!-- <append>true</append> -->
194 </configuration>
195 </execution>
196 <execution>
197 <goals>
198 <goal>merge</goal>
199 </goals>
200 <phase>post-integration-test</phase>
201 <configuration>
202 <fileSets>
203 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
204 <directory>${project.build.directory}/coverage-reports</directory>
205 <includes>
206 <include>*.exec</include>
207 </includes>
208 </fileSet>
209 </fileSets>
210 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
211 </configuration>
212 </execution>
213 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400214 </plugin>
215 </plugins>
216 </build>
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>
sg481nbd890c52017-08-28 12:11:35 -0400233
sg481nbd890c52017-08-28 12:11:35 -0400234</project>
235