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