blob: c821c2f04bf8a6ea96a62ecb9a7efebc580e4c98 [file] [log] [blame]
Instrumentala20accc2018-03-26 13:49:56 -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 <parent>
Instrumental17ca7442018-03-29 16:54:19 -050025 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070026 <artifactId>parent</artifactId>
27 <version>1.5.0-SNAPSHOT</version>
28 <relativePath>..</relativePath>
29 </parent>
30
31 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-cadi-cass</artifactId>
33 <name>AAF CADI Cassandra Library</name>
34 <packaging>jar</packaging>
35
Sai Gandhamc434f3c2018-03-27 16:29:24 +000036 <properties>
37 <!-- SONAR -->
38 <jacoco.version>0.7.7.201606060606</jacoco.version>
39 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
40 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
41 <!-- Default Sonar configuration -->
42 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
43 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
44 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
45 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
46 <nexusproxy>https://nexus.onap.org</nexusproxy>
47 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
48 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
49 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
50 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
51 </properties>
52
Instrumentala20accc2018-03-26 13:49:56 -070053 <developers>
54 <developer>
55 <name>Jonathan Gathman</name>
56 <email>jonathan.gathman@att.com</email>
57 <organization>ATT</organization>
58 <roles>
59 <role>Architect</role>
60 <role>Lead Developer</role>
61 </roles>
62 </developer>
63 <developer>
64 <name>Gabe Maurer</name>
65 <email>gabe.maurer@att.com</email>
66 <organization>ATT</organization>
67 <roles>
68 <role>Developer</role>
69 </roles>
70 </developer>
71 <developer>
72 <name>Ian Howell</name>
73 <email>ian.howell@att.com</email>
74 <organization>ATT</organization>
75 <roles>
76 <role>Developer</role>
77 </roles>
78 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000079 <developer>
80 <name>Sai Gandham</name>
81 <email>sai.gandham@att.com</email>
82 <organization>ATT</organization>
83 <roles>
84 <role>Developer</role>
85 </roles>
86 </developer>
Instrumentala20accc2018-03-26 13:49:56 -070087 </developers>
88
89 <dependencies>
90 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050091 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070092 <artifactId>aaf-cadi-core</artifactId>
93 </dependency>
94
95 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050096 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070097 <artifactId>aaf-cadi-aaf</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.apache.cassandra</groupId>
102 <artifactId>cassandra-all</artifactId>
103 <version>2.1.14</version>
104 <scope>compile</scope>
105 <exclusions>
106 <exclusion>
107 <groupId>org.slf4j</groupId>
108 <artifactId>slf4j-log4j12</artifactId>
109 </exclusion>
110 <exclusion>
111 <groupId>log4j</groupId>
112 <artifactId>log4j</artifactId>
113 </exclusion>
114 </exclusions>
115 </dependency>
116
117 </dependencies>
118 <build>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000119 <plugins>
120 <plugin>
121 <groupId>org.sonatype.plugins</groupId>
122 <artifactId>nexus-staging-maven-plugin</artifactId>
123 <version>1.6.7</version>
124 <extensions>true</extensions>
125 <configuration>
126 <nexusUrl>${nexusproxy}</nexusUrl>
127 <stagingProfileId>176c31dfe190a</stagingProfileId>
128 <serverId>ecomp-staging</serverId>
129 </configuration>
130 </plugin>
131 <plugin>
132 <groupId>org.jacoco</groupId>
133 <artifactId>jacoco-maven-plugin</artifactId>
134 <version>0.7.7.201606060606</version>
135 <configuration>
136 <dumpOnExit>true</dumpOnExit>
137 <includes>
138 <include>org.onap.aaf.*</include>
139 </includes>
140 </configuration>
141 <executions>
142 <execution>
143 <id>pre-unit-test</id>
144 <goals>
145 <goal>prepare-agent</goal>
146 </goals>
147 <configuration>
148 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
149 <!-- <append>true</append> -->
150 </configuration>
151 </execution>
152 <execution>
153 <id>pre-integration-test</id>
154 <phase>pre-integration-test</phase>
155 <goals>
156 <goal>prepare-agent</goal>
157 </goals>
158 <configuration>
159 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
160 <!-- <append>true</append> -->
161 </configuration>
162 </execution>
163 <execution>
164 <goals>
165 <goal>merge</goal>
166 </goals>
167 <phase>post-integration-test</phase>
168 <configuration>
169 <fileSets>
170 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
171 <directory>${project.build.directory}/coverage-reports</directory>
172 <includes>
173 <include>*.exec</include>
174 </includes>
175 </fileSet>
176 </fileSets>
177 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
178 </configuration>
179 </execution>
180 </executions>
181 </plugin>
182 </plugins>
183
Instrumentala20accc2018-03-26 13:49:56 -0700184 </build>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000185
186 <distributionManagement>
187 <repository>
188 <id>ecomp-releases</id>
189 <name>AAF Release Repository</name>
190 <url>${nexusproxy}${releaseNexusPath}</url>
191 </repository>
192 <snapshotRepository>
193 <id>ecomp-snapshots</id>
194 <name>AAF Snapshot Repository</name>
195 <url>${nexusproxy}${snapshotNexusPath}</url>
196 </snapshotRepository>
197 <site>
198 <id>ecomp-site</id>
199 <url>dav:${nexusproxy}${sitePath}</url>
200 </site>
201 </distributionManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700202</project>