blob: 799622b6e1e2c6a9b5d0122cd41de46250b5bd68 [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 <name>AAF CADI Shiro Plugin</name>
33 <packaging>jar</packaging>
34 <artifactId>aaf-cadi-shiro</artifactId>
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-aaf</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.shiro</groupId>
96 <artifactId>shiro-core</artifactId>
97 <version>1.3.2</version>
98 </dependency>
99 </dependencies>
100 <build>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000101 <plugins>
102 <plugin>
103 <groupId>org.sonatype.plugins</groupId>
104 <artifactId>nexus-staging-maven-plugin</artifactId>
105 <version>1.6.7</version>
106 <extensions>true</extensions>
107 <configuration>
108 <nexusUrl>${nexusproxy}</nexusUrl>
109 <stagingProfileId>176c31dfe190a</stagingProfileId>
110 <serverId>ecomp-staging</serverId>
111 </configuration>
112 </plugin>
113 <plugin>
114 <groupId>org.jacoco</groupId>
115 <artifactId>jacoco-maven-plugin</artifactId>
116 <version>0.7.7.201606060606</version>
117 <configuration>
118 <dumpOnExit>true</dumpOnExit>
119 <includes>
120 <include>org.onap.aaf.*</include>
121 </includes>
122 </configuration>
123 <executions>
124 <execution>
125 <id>pre-unit-test</id>
126 <goals>
127 <goal>prepare-agent</goal>
128 </goals>
129 <configuration>
130 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
131 <!-- <append>true</append> -->
132 </configuration>
133 </execution>
134 <execution>
135 <id>pre-integration-test</id>
136 <phase>pre-integration-test</phase>
137 <goals>
138 <goal>prepare-agent</goal>
139 </goals>
140 <configuration>
141 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
142 <!-- <append>true</append> -->
143 </configuration>
144 </execution>
145 <execution>
146 <goals>
147 <goal>merge</goal>
148 </goals>
149 <phase>post-integration-test</phase>
150 <configuration>
151 <fileSets>
152 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
153 <directory>${project.build.directory}/coverage-reports</directory>
154 <includes>
155 <include>*.exec</include>
156 </includes>
157 </fileSet>
158 </fileSets>
159 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
160 </configuration>
161 </execution>
162 </executions>
163 </plugin>
Sai Gandham649335a2018-03-27 20:33:30 +0000164 <plugin>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-deploy-plugin</artifactId>
167 <version>2.8.1</version>
168 <configuration>
169 <skip>true</skip>
170 </configuration>
171
172 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000173 </plugins>
174
Instrumentala20accc2018-03-26 13:49:56 -0700175 </build>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000176
177 <distributionManagement>
178 <repository>
179 <id>ecomp-releases</id>
180 <name>AAF Release Repository</name>
181 <url>${nexusproxy}${releaseNexusPath}</url>
182 </repository>
183 <snapshotRepository>
184 <id>ecomp-snapshots</id>
185 <name>AAF Snapshot Repository</name>
186 <url>${nexusproxy}${snapshotNexusPath}</url>
187 </snapshotRepository>
188 <site>
189 <id>ecomp-site</id>
190 <url>dav:${nexusproxy}${sitePath}</url>
191 </site>
192 </distributionManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700193</project>