Change Beijing Release to 2.1.1
[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</groupId>
26                 <artifactId>cadiparent</artifactId>
27                 <version>2.1.1-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</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.4.0</version>
99                 </dependency> -->
100                 
101                 <dependency>
102                         <groupId>org.apache.shiro</groupId>
103                         <artifactId>shiro-core</artifactId>
104                         <version>1.3.2</version>
105                 </dependency>
106                 
107         </dependencies>
108         <build>
109                 <plugins>
110                         <plugin>
111                                 <groupId>org.sonatype.plugins</groupId>
112                                 <artifactId>nexus-staging-maven-plugin</artifactId>
113                                 <extensions>true</extensions>
114                                 <configuration>
115                                         <nexusUrl>${nexusproxy}</nexusUrl>
116                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
117                                         <serverId>ecomp-staging</serverId>
118                                 </configuration>
119                         </plugin>
120                         <plugin>
121                                 <groupId>org.apache.maven.plugins</groupId>
122                                 <artifactId>maven-deploy-plugin</artifactId>
123                                 <configuration>
124                                         <skip>false</skip>
125                                 </configuration>
126                         </plugin>
127                         <plugin>
128                                 <groupId>org.jacoco</groupId>
129                                 <artifactId>jacoco-maven-plugin</artifactId>
130                                 <configuration>
131                                         <excludes>
132                                                 <exclude>**/gen/**</exclude>
133                                                 <exclude>**/generated-sources/**</exclude>
134                                                 <exclude>**/yang-gen/**</exclude>
135                                                 <exclude>**/pax/**</exclude>
136                                         </excludes>
137                                 </configuration>
138                                 <executions>
139                                         <execution>
140                                                 <id>pre-unit-test</id>
141                                                 <goals>
142                                                         <goal>prepare-agent</goal>
143                                                 </goals>
144                                                 <configuration>
145                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
146                                                         <propertyName>surefireArgLine</propertyName>
147                                                 </configuration>
148                                         </execution>
149                                         <execution>
150                                                 <id>post-unit-test</id>
151                                                 <phase>test</phase>
152                                                 <goals>
153                                                         <goal>report</goal>
154                                                 </goals>
155                                                 <configuration>
156                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
157                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
158                                                 </configuration>
159                                         </execution>
160                                         <execution>
161                                                 <id>pre-integration-test</id>
162                                                 <phase>pre-integration-test</phase>
163                                                 <goals>
164                                                         <goal>prepare-agent</goal>
165                                                 </goals>
166                                                 <configuration>
167                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
168                                                         <propertyName>failsafeArgLine</propertyName>
169                                                 </configuration>
170                                         </execution>
171                                         <execution>
172                                                 <id>post-integration-test</id>
173                                                 <phase>post-integration-test</phase>
174                                                 <goals>
175                                                         <goal>report</goal>
176                                                 </goals>
177                                                 <configuration>
178                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
179                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
180                                                 </configuration>
181                                         </execution>
182                                 </executions>
183                         </plugin>
184                 </plugins>
185
186         </build>
187
188         <distributionManagement>
189                 <repository>
190                         <id>ecomp-releases</id>
191                         <name>AAF Release Repository</name>
192                         <url>${nexusproxy}${releaseNexusPath}</url>
193                 </repository>
194                 <snapshotRepository>
195                         <id>ecomp-snapshots</id>
196                         <name>AAF Snapshot Repository</name>
197                         <url>${nexusproxy}${snapshotNexusPath}</url>
198                 </snapshotRepository>
199                 <site>
200                         <id>ecomp-site</id>
201                         <url>dav:${nexusproxy}${sitePath}</url>
202                 </site>
203         </distributionManagement>
204 </project>