blob: 3de0606ddf3649ff82809babf4f6ec4e9907bdec [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>
sg481n72aacef2017-10-05 16:13:21 +000039
sg481nbd890c52017-08-28 12:11:35 -040040 <developers>
41 <developer>
42 <name>Jonathan Gathman</name>
43 <email></email>
44 <organization>ATT</organization>
45 <organizationUrl></organizationUrl>
46 </developer>
47 </developers>
48 <properties>
49 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000051
52 <!-- SONAR -->
53 <jacoco.version>0.7.7.201606060606</jacoco.version>
54 <sonar.skip>true</sonar.skip>
55 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
56 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
57 <!-- Default Sonar configuration -->
58 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
59 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
60 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
61 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481nbd890c52017-08-28 12:11:35 -040062 <nexusproxy>https://nexus.onap.org</nexusproxy>
63 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
64 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
65 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000066 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040067 </properties>
68 <dependencies>
69 <dependency>
70 <groupId>org.onap.aaf.authz</groupId>
71 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040072 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040073 </dependency>
74
75 <dependency>
76 <groupId>org.onap.aaf.cadi</groupId>
77 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040078 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80
81 <dependency>
82 <groupId>com.datastax.cassandra</groupId>
83 <artifactId>cassandra-driver-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040084 <version>2.1.10</version>
sg481nbd890c52017-08-28 12:11:35 -040085 </dependency>
86
87 <!-- Cassandra prefers Snappy and LZ4 libs for performance -->
88 <dependency>
89 <groupId>org.xerial.snappy</groupId>
90 <artifactId>snappy-java</artifactId>
91 <version>1.1.1-M1</version>
92 </dependency>
93
94 <dependency>
95 <groupId>net.jpountz.lz4</groupId>
96 <artifactId>lz4</artifactId>
97 <version>1.2.0</version>
98 </dependency>
99
100 <dependency>
101 <groupId>com.googlecode.jcsv</groupId>
102 <artifactId>jcsv</artifactId>
103 <version>1.4.0</version>
104 </dependency>
105
106 <dependency>
107 <groupId>org.slf4j</groupId>
108 <artifactId>slf4j-log4j12</artifactId>
109 <scope>test</scope>
110 </dependency>
111
112
113 </dependencies>
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-jarsigner-plugin</artifactId>
119 </plugin>
sg481na2ac6782017-09-18 16:35:50 -0400120
sg481na9d21082017-09-23 14:26:06 +0000121 <plugin>
sg481nbd890c52017-08-28 12:11:35 -0400122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000124 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400125 <configuration>
126 <failOnError>false</failOnError>
127 </configuration>
128 <executions>
129 <execution>
130 <id>attach-javadocs</id>
131 <goals>
132 <goal>jar</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137
138
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-source-plugin</artifactId>
142 <version>2.2.1</version>
143 <executions>
144 <execution>
145 <id>attach-sources</id>
146 <goals>
147 <goal>jar-no-fork</goal>
148 </goals>
149 </execution>
150 </executions>
151 </plugin>
152<plugin>
153 <groupId>org.sonatype.plugins</groupId>
154 <artifactId>nexus-staging-maven-plugin</artifactId>
155 <version>1.6.7</version>
156 <extensions>true</extensions>
157 <configuration>
158 <nexusUrl>${nexusproxy}</nexusUrl>
159 <stagingProfileId>176c31dfe190a</stagingProfileId>
160 <serverId>ecomp-staging</serverId>
161 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400162 </plugin>
163 <plugin>
sg481n4ccc6b82017-10-04 17:29:37 +0000164 <groupId>org.jacoco</groupId>
165 <artifactId>jacoco-maven-plugin</artifactId>
166 <version>${jacoco.version}</version>
167 <configuration>
168 <excludes>
169 <exclude>**/gen/**</exclude>
170 <exclude>**/generated-sources/**</exclude>
171 <exclude>**/yang-gen/**</exclude>
172 <exclude>**/pax/**</exclude>
173 </excludes>
174 </configuration>
175 <executions>
176
177 <execution>
178 <id>pre-unit-test</id>
179 <goals>
180 <goal>prepare-agent</goal>
181 </goals>
182 <configuration>
183 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
184 <propertyName>surefireArgLine</propertyName>
185 </configuration>
186 </execution>
187
188
189 <execution>
190 <id>post-unit-test</id>
191 <phase>test</phase>
192 <goals>
193 <goal>report</goal>
194 </goals>
195 <configuration>
196 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
197 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
198 </configuration>
199 </execution>
200 <execution>
201 <id>pre-integration-test</id>
202 <phase>pre-integration-test</phase>
203 <goals>
204 <goal>prepare-agent</goal>
205 </goals>
206 <configuration>
207 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
208
209 <propertyName>failsafeArgLine</propertyName>
210 </configuration>
211 </execution>
212
213
214 <execution>
215 <id>post-integration-test</id>
216 <phase>post-integration-test</phase>
217 <goals>
218 <goal>report</goal>
219 </goals>
220 <configuration>
221 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
222 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
223 </configuration>
224 </execution>
225 </executions>
226 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000227
sg481nbd890c52017-08-28 12:11:35 -0400228 </plugins>
229 </build>
230 <distributionManagement>
231 <repository>
232 <id>ecomp-releases</id>
233 <name>AAF Release Repository</name>
234 <url>${nexusproxy}${releaseNexusPath}</url>
235 </repository>
236 <snapshotRepository>
237 <id>ecomp-snapshots</id>
238 <name>AAF Snapshot Repository</name>
239 <url>${nexusproxy}${snapshotNexusPath}</url>
240 </snapshotRepository>
241 <site>
242 <id>ecomp-site</id>
243 <url>dav:${nexusproxy}${sitePath}</url>
244 </site>
245 </distributionManagement>
sg481nbd890c52017-08-28 12:11:35 -0400246
sg481nbd890c52017-08-28 12:11:35 -0400247</project>
248