Release aaf/authz
[aaf/authz.git] / auth / auth-deforg / 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/maven-v4_0_0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <artifactId>authparent</artifactId>
27                 <relativePath>../pom.xml</relativePath>
28                 <groupId>org.onap.aaf.authz</groupId>
29                 <version>2.1.15</version>
30         </parent>
31
32         <artifactId>aaf-auth-deforg</artifactId>
33         <name>AAF Auth Default Organization</name>
34         <description>Example Organization Module</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                 <maven.test.failure.ignore>false</maven.test.failure.ignore>
76                 <!--  SONAR  -->
77                 <!-- <sonar.skip>true</sonar.skip> -->
78                  <jacoco.version>0.7.7.201606060606</jacoco.version>
79                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
80                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
81                 <!-- Default Sonar configuration -->
82                 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
83                 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
84                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
85                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
86                 <nexusproxy>https://nexus.onap.org</nexusproxy>
87                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
88                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
89                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
90                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
91         </properties>
92
93
94         <dependencies>
95                 <dependency>
96                         <groupId>org.onap.aaf.authz</groupId>
97                         <artifactId>aaf-cadi-core</artifactId>
98                 </dependency>
99
100                 <dependency>
101                         <groupId>org.onap.aaf.authz</groupId>
102                         <artifactId>aaf-auth-core</artifactId>
103                 </dependency>
104
105         </dependencies>
106
107         <build>
108                 <pluginManagement>
109                         <plugins>
110                         <plugin>
111                                 <groupId>org.apache.maven.plugins</groupId>
112                                 <artifactId>maven-deploy-plugin</artifactId>
113                                 <configuration>
114                                         <skip>false</skip>
115                                 </configuration>
116                         </plugin>
117                                 <plugin>
118                                         <groupId>org.apache.maven.plugins</groupId>
119                                         <artifactId>maven-javadoc-plugin</artifactId>
120                                         <version>2.10.4</version>
121                                         <configuration>
122                                                 <failOnError>false</failOnError>
123                                         </configuration>
124                                         <executions>
125                                                 <execution>
126                                                         <id>attach-javadocs</id>
127                                                         <goals>
128                                                                 <goal>jar</goal>
129                                                         </goals>
130                                                 </execution>
131                                         </executions>
132                                 </plugin>
133                                 <plugin>
134                                         <groupId>org.jacoco</groupId>
135                                         <artifactId>jacoco-maven-plugin</artifactId>
136                                         <version>${jacoco.version}</version>
137                                         <configuration>
138                                                 <excludes>
139                                                         <exclude>**/gen/**</exclude>
140                                                         <exclude>**/generated-sources/**</exclude>
141                                                         <exclude>**/yang-gen/**</exclude>
142                                                         <exclude>**/pax/**</exclude>
143                                                 </excludes>
144                                         </configuration>
145                                         <executions>
146                                                 <execution>
147                                                         <id>pre-unit-test</id>
148                                                         <goals>
149                                                                 <goal>prepare-agent</goal>
150                                                         </goals>
151                                                         <configuration>
152                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
153                                                                 <propertyName>surefireArgLine</propertyName>
154                                                         </configuration>
155                                                 </execution>
156                                                 <execution>
157                                                         <id>post-unit-test</id>
158                                                         <phase>test</phase>
159                                                         <goals>
160                                                                 <goal>report</goal>
161                                                         </goals>
162                                                         <configuration>
163                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
164                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
165                                                                 <includes>
166                                                                         <include>**</include>
167                                                                 </includes>
168                                                         </configuration>
169                                                 </execution>
170                                                 <execution>
171                                                         <id>pre-integration-test</id>
172                                                         <phase>pre-integration-test</phase>
173                                                         <goals>
174                                                                 <goal>prepare-agent</goal>
175                                                         </goals>
176                                                         <configuration>
177                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
178                                                                 <includes>
179                                                                         <include>**</include>
180                                                                 </includes>
181                                                                 <propertyName>failsafeArgLine</propertyName>
182                                                         </configuration>
183                                                 </execution>
184                                                 <execution>
185                                                         <id>post-integration-test</id>
186                                                         <phase>post-integration-test</phase>
187                                                         <goals>
188                                                                 <goal>report</goal>
189                                                         </goals>
190                                                         <configuration>
191                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
192                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
193                                                         </configuration>
194                                                 </execution>
195                                         </executions>
196                                 </plugin>
197                         </plugins>
198                 </pluginManagement>
199         </build>
200
201         <distributionManagement>
202                 <repository>
203                         <id>ecomp-releases</id>
204                         <name>AAF Release Repository</name>
205                         <url>${nexusproxy}${releaseNexusPath}</url>
206                 </repository>
207                 <snapshotRepository>
208                         <id>ecomp-snapshots</id>
209                         <name>AAF Snapshot Repository</name>
210                         <url>${nexusproxy}${snapshotNexusPath}</url>
211                 </snapshotRepository>
212                 <site>
213                         <id>ecomp-site</id>
214                         <url>dav:${nexusproxy}${sitePath}</url>
215                 </site>
216         </distributionManagement>
217 </project>