Prepare for release 2.1.17
[aaf/cadi.git] / shiro / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--* ============LICENSE_START==================================================== 
3     * =========================================================================== 
4     * org.onap.aaf 
5     * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. 
6     * =========================================================================== 
7     * Licensed under the Apache License, Version 2.0 (the "License"); 
8     * you may not use this file except in compliance with the License. 
9     * You may obtain a copy of the License at 
10     * 
11     * http://www.apache.org/licenses/LICENSE-2.0 
12     * 
13     * Unless required by applicable law or agreed to in writing, software 
14     * distributed under the License is distributed on an "AS IS" BASIS, 
15     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
16     * See the License for the specific language governing permissions and 
17     * limitations under the License. 
18     * ============LICENSE_END==================================================== 
19     * -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22         <parent>
23                 <groupId>org.onap.aaf.cadi</groupId>
24                 <artifactId>parent</artifactId>
25                 <version>2.1.17-SNAPSHOT</version>
26                 <relativePath>..</relativePath>
27         </parent>
28
29         <modelVersion>4.0.0</modelVersion>
30         <name>Shiro CADI Plugin</name>
31         <packaging>jar</packaging>
32         <artifactId>aaf-cadi-shiro</artifactId>
33
34         <properties>
35         <!--  SONAR  -->
36         <sonar.skip>true</sonar.skip>
37                  <jacoco.version>0.7.7.201606060606</jacoco.version>
38             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
39             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
40             <!-- Default Sonar configuration -->
41             <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
42             <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
43             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
44             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
45                 <nexusproxy>https://nexus.onap.org</nexusproxy>
46                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
47                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
48                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
49                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
50         </properties>
51
52         <developers>
53                 <developer>
54                         <name>Jonathan Gathman</name>
55                         <email>jonathan.gathman@att.com</email>
56                         <organization>ATT</organization>
57                         <roles>
58                                 <role>Architect</role>
59                                 <role>Lead Developer</role>
60                         </roles>
61                 </developer>
62                 <developer>
63                         <name>Gabe Maurer</name>
64                         <email>gabe.maurer@att.com</email>
65                         <organization>ATT</organization>
66                         <roles>
67                                 <role>Developer</role>
68                         </roles>
69                 </developer>
70                 <developer>
71                         <name>Ian Howell</name>
72                         <email>ian.howell@att.com</email>
73                         <organization>ATT</organization>
74                         <roles>
75                                 <role>Developer</role>
76                         </roles>
77                 </developer>
78                 <developer>
79                         <name>Sai Gandham</name>
80                         <email>sai.gandham@att.com</email>
81                         <organization>ATT</organization>
82                         <roles>
83                                 <role>Developer</role>
84                         </roles>
85                 </developer>
86         </developers>
87
88         <dependencies>
89                 <dependency>
90                         <groupId>org.onap.aaf.authz</groupId>
91                         <artifactId>aaf-cadi-aaf</artifactId>
92                         <exclusions>
93                                 <exclusion>
94                                         <groupId>log4j</groupId>
95                                         <artifactId>log4j</artifactId>
96                                 </exclusion>
97                         </exclusions>
98                 </dependency> 
99
100                 
101                 <dependency>
102                         <groupId>org.apache.shiro</groupId>
103                         <artifactId>shiro-core</artifactId>
104                                 <exclusions>
105                                         <exclusion>
106                                                 <groupId>commons-beanutils</groupId>
107                                         <artifactId>commons-beanutils</artifactId>
108                                         </exclusion>
109                                 </exclusions>
110                 </dependency>
111                 
112                 <dependency>
113                         <groupId>org.slf4j</groupId>
114                         <artifactId>slf4j-api</artifactId>
115                 </dependency>
116                 
117                 <dependency>
118                 <groupId>ch.qos.logback</groupId>
119                     <artifactId>logback-classic</artifactId>
120                 <scope>test</scope>
121                 </dependency>
122         </dependencies>
123         <build>
124                 <plugins>
125                         <plugin>
126                                 <groupId>org.apache.maven.plugins</groupId>
127                                 <artifactId>maven-deploy-plugin</artifactId>
128                                 <configuration>
129                                         <skip>false</skip>
130                                 </configuration>
131                         </plugin>
132                         <plugin>
133                                 <groupId>org.jacoco</groupId>
134                                 <artifactId>jacoco-maven-plugin</artifactId>
135                                 <configuration>
136                                         <excludes>
137                                                 <exclude>**/gen/**</exclude>
138                                                 <exclude>**/generated-sources/**</exclude>
139                                                 <exclude>**/yang-gen/**</exclude>
140                                                 <exclude>**/pax/**</exclude>
141                                         </excludes>
142                                 </configuration>
143                                 <executions>
144                                         <execution>
145                                                 <id>pre-unit-test</id>
146                                                 <goals>
147                                                         <goal>prepare-agent</goal>
148                                                 </goals>
149                                                 <configuration>
150                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
151                                                         <propertyName>surefireArgLine</propertyName>
152                                                 </configuration>
153                                         </execution>
154                                         <execution>
155                                                 <id>post-unit-test</id>
156                                                 <phase>test</phase>
157                                                 <goals>
158                                                         <goal>report</goal>
159                                                 </goals>
160                                                 <configuration>
161                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
162                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
163                                                 </configuration>
164                                         </execution>
165                                         <execution>
166                                                 <id>pre-integration-test</id>
167                                                 <phase>pre-integration-test</phase>
168                                                 <goals>
169                                                         <goal>prepare-agent</goal>
170                                                 </goals>
171                                                 <configuration>
172                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
173                                                         <propertyName>failsafeArgLine</propertyName>
174                                                 </configuration>
175                                         </execution>
176                                         <execution>
177                                                 <id>post-integration-test</id>
178                                                 <phase>post-integration-test</phase>
179                                                 <goals>
180                                                         <goal>report</goal>
181                                                 </goals>
182                                                 <configuration>
183                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
184                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
185                                                 </configuration>
186                                         </execution>
187                                 </executions>
188                         </plugin>
189                 </plugins>
190
191         </build>
192
193         <distributionManagement>
194                 <repository>
195                         <id>ecomp-releases</id>
196                         <name>AAF Release Repository</name>
197                         <url>${nexusproxy}${releaseNexusPath}</url>
198                 </repository>
199                 <snapshotRepository>
200                         <id>ecomp-snapshots</id>
201                         <name>AAF Snapshot Repository</name>
202                         <url>${nexusproxy}${snapshotNexusPath}</url>
203                 </snapshotRepository>
204                 <site>
205                         <id>ecomp-site</id>
206                         <url>dav:${nexusproxy}${sitePath}</url>
207                 </site>
208         </distributionManagement>
209 </project>