Pull in all pom changes, merge, and review
[aaf/authz.git] / cadi / shiro / pom.xml
1 <?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>
25                 <groupId>org.onap.aaf.authz.cadi</groupId>
26                 <artifactId>parent</artifactId>
27                 <version>2.1.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
36         <properties>
37         <!--  SONAR  -->
38         <sonar.skip>true</sonar.skip>
39                  <jacoco.version>0.7.7.201606060606</jacoco.version>
40             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
41             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
42             <!-- Default Sonar configuration -->
43             <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
44             <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
45             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
46             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
47                 <nexusproxy>https://nexus.onap.org</nexusproxy>
48                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
49                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
50                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
51                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
52         </properties>
53
54         <developers>
55                 <developer>
56                         <name>Jonathan Gathman</name>
57                         <email>jonathan.gathman@att.com</email>
58                         <organization>ATT</organization>
59                         <roles>
60                                 <role>Architect</role>
61                                 <role>Lead Developer</role>
62                         </roles>
63                 </developer>
64                 <developer>
65                         <name>Gabe Maurer</name>
66                         <email>gabe.maurer@att.com</email>
67                         <organization>ATT</organization>
68                         <roles>
69                                 <role>Developer</role>
70                         </roles>
71                 </developer>
72                 <developer>
73                         <name>Ian Howell</name>
74                         <email>ian.howell@att.com</email>
75                         <organization>ATT</organization>
76                         <roles>
77                                 <role>Developer</role>
78                         </roles>
79                 </developer>
80                 <developer>
81                         <name>Sai Gandham</name>
82                         <email>sai.gandham@att.com</email>
83                         <organization>ATT</organization>
84                         <roles>
85                                 <role>Developer</role>
86                         </roles>
87                 </developer>
88         </developers>
89
90         <dependencies>
91                 <dependency>
92                         <groupId>org.onap.aaf.authz.cadi</groupId>
93                         <artifactId>aaf-cadi-aaf</artifactId>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.apache.shiro</groupId>
97                         <artifactId>shiro-core</artifactId>
98                         <version>1.3.2</version>
99                 </dependency>
100         </dependencies>
101         <build>
102                 <plugins>
103                         <plugin>
104                                 <groupId>org.sonatype.plugins</groupId>
105                                 <artifactId>nexus-staging-maven-plugin</artifactId>
106                                 <version>1.6.7</version>
107                                 <extensions>true</extensions>
108                                 <configuration>
109                                         <nexusUrl>${nexusproxy}</nexusUrl>
110                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
111                                         <serverId>ecomp-staging</serverId>
112                                 </configuration>
113                         </plugin>
114                         <plugin>
115                                 <groupId>org.apache.maven.plugins</groupId>
116                                 <artifactId>maven-deploy-plugin</artifactId>
117                                 <version>2.8.1</version>
118                                 <configuration>
119                                         <skip>false</skip>
120                                 </configuration>
121                         </plugin>
122                         <plugin>
123                                 <groupId>org.jacoco</groupId>
124                                 <artifactId>jacoco-maven-plugin</artifactId>
125                                 <version>${jacoco.version}</version>
126                                 <configuration>
127                                         <excludes>
128                                                 <exclude>**/gen/**</exclude>
129                                                 <exclude>**/generated-sources/**</exclude>
130                                                 <exclude>**/yang-gen/**</exclude>
131                                                 <exclude>**/pax/**</exclude>
132                                         </excludes>
133                                 </configuration>
134                                 <executions>
135                                         <execution>
136                                                 <id>pre-unit-test</id>
137                                                 <goals>
138                                                         <goal>prepare-agent</goal>
139                                                 </goals>
140                                                 <configuration>
141                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
142                                                         <propertyName>surefireArgLine</propertyName>
143                                                 </configuration>
144                                         </execution>
145                                         <execution>
146                                                 <id>post-unit-test</id>
147                                                 <phase>test</phase>
148                                                 <goals>
149                                                         <goal>report</goal>
150                                                 </goals>
151                                                 <configuration>
152                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
153                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
154                                                 </configuration>
155                                         </execution>
156                                         <execution>
157                                                 <id>pre-integration-test</id>
158                                                 <phase>pre-integration-test</phase>
159                                                 <goals>
160                                                         <goal>prepare-agent</goal>
161                                                 </goals>
162                                                 <configuration>
163                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
164                                                         <propertyName>failsafeArgLine</propertyName>
165                                                 </configuration>
166                                         </execution>
167                                         <execution>
168                                                 <id>post-integration-test</id>
169                                                 <phase>post-integration-test</phase>
170                                                 <goals>
171                                                         <goal>report</goal>
172                                                 </goals>
173                                                 <configuration>
174                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
175                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
176                                                 </configuration>
177                                         </execution>
178                                 </executions>
179                         </plugin>
180                 </plugins>
181
182         </build>
183
184         <distributionManagement>
185                 <repository>
186                         <id>ecomp-releases</id>
187                         <name>AAF Release Repository</name>
188                         <url>${nexusproxy}${releaseNexusPath}</url>
189                 </repository>
190                 <snapshotRepository>
191                         <id>ecomp-snapshots</id>
192                         <name>AAF Snapshot Repository</name>
193                         <url>${nexusproxy}${snapshotNexusPath}</url>
194                 </snapshotRepository>
195                 <site>
196                         <id>ecomp-site</id>
197                         <url>dav:${nexusproxy}${sitePath}</url>
198                 </site>
199         </distributionManagement>
200 </project>