Include all modules in AAF parent
[aaf/authz.git] / auth / auth-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- * ============LICENSE_START==================================================== 
3         * org.onap.aaf * =========================================================================== 
4         * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =========================================================================== 
5         * Licensed under the Apache License, Version 2.0 (the "License"); * you may 
6         not use this file except in compliance with the License. * You may obtain 
7         a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * 
8         * Unless required by applicable law or agreed to in writing, software * distributed 
9         under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES 
10         OR CONDITIONS OF ANY KIND, either express or implied. * See the License for 
11         the specific language governing permissions and * limitations under the License. 
12         * ============LICENSE_END==================================================== 
13         * -->
14 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16         <modelVersion>4.0.0</modelVersion>
17         <parent>
18                 <groupId>org.onap.aaf.authz</groupId>
19                 <artifactId>authparent</artifactId>
20                 <version>2.1.0-SNAPSHOT</version>
21                 <relativePath>../pom.xml</relativePath>
22         </parent>
23
24         <artifactId>aaf-auth-service</artifactId>
25         <name>AAF Auth Service</name>
26         <description>Core API Component for AAF Auth</description>
27
28         <properties>
29                 <maven.test.failure.ignore>true</maven.test.failure.ignore>
30                 <sonar.skip>true</sonar.skip>
31                 <!-- SONAR -->
32                 <jacoco.version>0.7.7.201606060606</jacoco.version>
33                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
34                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
35                 <!-- Default Sonar configuration -->
36                 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
37                 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
38                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
39                         below -->
40                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
41                 <nexusproxy>https://nexus.onap.org</nexusproxy>
42                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
43                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
44                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
45                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
46
47         </properties>
48
49         <dependencies>
50                 <dependency>
51                         <groupId>org.onap.aaf.authz</groupId>
52                         <artifactId>aaf-auth-client</artifactId>
53                         <version>${project.version}</version>
54                 </dependency>
55
56                 <dependency>
57                         <groupId>org.onap.aaf.authz</groupId>
58                         <artifactId>aaf-auth-core</artifactId>
59                         <version>${project.version}</version>
60                 </dependency>
61
62                 <!-- Add the Organizations you wish to support. You can delete ONAP if 
63                         you have something else Match with Property Entry: Organization.<root ns>, 
64                         i.e. Organization.onap.org=org.onap.org.DefaultOrg -->
65                 <dependency>
66                         <groupId>org.onap.aaf.authz</groupId>
67                         <artifactId>aaf-auth-deforg</artifactId>
68                         <version>${project.version}</version>
69                 </dependency>
70
71                 <dependency>
72                         <groupId>org.onap.aaf.authz</groupId>
73                         <artifactId>aaf-auth-cass</artifactId>
74                         <version>${project.version}</version>
75                 </dependency>
76
77                 <dependency>
78                         <groupId>org.onap.aaf.authz</groupId>
79                         <artifactId>aaf-auth-oauth</artifactId>
80                         <version>${project.version}</version>
81                 </dependency>
82
83                 <dependency>
84                         <groupId>org.onap.aaf.authz</groupId>
85                         <artifactId>aaf-misc-rosetta</artifactId>
86                         <version>${project.version}</version>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.onap.aaf.authz</groupId>
91                         <artifactId>aaf-cadi-aaf</artifactId>
92                         <version>${project.version}</version>
93                 </dependency>
94
95                 <dependency>
96                         <groupId>org.eclipse.jetty</groupId>
97                         <artifactId>jetty-servlet</artifactId>
98                 </dependency>
99
100         </dependencies>
101
102         <build>
103                 <plugins>
104                         <plugin>
105                                 <groupId>org.apache.maven.plugins</groupId>
106                                 <artifactId>maven-jar-plugin</artifactId>
107                                 <configuration>
108                                         <excludes>
109                                                 <exclude>*.properties</exclude>
110                                         </excludes>
111                                 </configuration>
112                                 <version>2.3.1</version>
113                         </plugin>
114                         <plugin>
115                                 <groupId>org.apache.maven.plugins</groupId>
116                                 <artifactId>maven-deploy-plugin</artifactId>
117                                 <configuration>
118                                         <skip>false</skip>
119                                 </configuration>
120                         </plugin>
121                         <plugin>
122                                 <groupId>org.codehaus.mojo</groupId>
123                                 <artifactId>appassembler-maven-plugin</artifactId>
124                                 <configuration>
125                                         <programs>
126                                                 <program>
127                                                         <mainClass>org.onap.aaf.auth.service.AAF_Service</mainClass>
128                                                         <name>service</name>
129                                                         <commandLineArguments>
130                                                                 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.service.props</commandLineArgument>
131                                                                 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/service</commandLineArgument>
132                                                         </commandLineArguments>
133                                                 </program>
134                                         </programs>
135                                 </configuration>
136                         </plugin>
137                         <plugin>
138                                 <groupId>org.sonatype.plugins</groupId>
139                                 <artifactId>nexus-staging-maven-plugin</artifactId>
140                                 <version>1.6.7</version>
141                                 <extensions>true</extensions>
142                                 <configuration>
143                                         <nexusUrl>${nexusproxy}</nexusUrl>
144                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
145                                         <serverId>ecomp-staging</serverId>
146                                 </configuration>
147                         </plugin>
148                         <plugin>
149                                 <groupId>org.jacoco</groupId>
150                                 <artifactId>jacoco-maven-plugin</artifactId>
151                                 <version>${jacoco.version}</version>
152                                 <configuration>
153                                         <excludes>
154                                                 <exclude>**/gen/**</exclude>
155                                                 <exclude>**/generated-sources/**</exclude>
156                                                 <exclude>**/yang-gen/**</exclude>
157                                                 <exclude>**/pax/**</exclude>
158                                         </excludes>
159                                 </configuration>
160                                 <executions>
161
162                                         <execution>
163                                                 <id>pre-unit-test</id>
164                                                 <goals>
165                                                         <goal>prepare-agent</goal>
166                                                 </goals>
167                                                 <configuration>
168                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
169                                                         <propertyName>surefireArgLine</propertyName>
170                                                 </configuration>
171                                         </execution>
172
173
174                                         <execution>
175                                                 <id>post-unit-test</id>
176                                                 <phase>test</phase>
177                                                 <goals>
178                                                         <goal>report</goal>
179                                                 </goals>
180                                                 <configuration>
181                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
182                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
183                                                 </configuration>
184                                         </execution>
185                                         <execution>
186                                                 <id>pre-integration-test</id>
187                                                 <phase>pre-integration-test</phase>
188                                                 <goals>
189                                                         <goal>prepare-agent</goal>
190                                                 </goals>
191                                                 <configuration>
192                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
193                                                         <propertyName>failsafeArgLine</propertyName>
194                                                 </configuration>
195                                         </execution>
196
197                                         <execution>
198                                                 <id>post-integration-test</id>
199                                                 <phase>post-integration-test</phase>
200                                                 <goals>
201                                                         <goal>report</goal>
202                                                 </goals>
203                                                 <configuration>
204                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
205                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
206                                                 </configuration>
207                                         </execution>
208                                 </executions>
209                         </plugin>
210                         <!-- plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> 
211                                 </plugin -->
212                 </plugins>
213         </build>
214
215         <distributionManagement>
216                 <repository>
217                         <id>ecomp-releases</id>
218                         <name>AAF Release Repository</name>
219                         <url>${nexusproxy}${releaseNexusPath}</url>
220                 </repository>
221                 <snapshotRepository>
222                         <id>ecomp-snapshots</id>
223                         <name>AAF Snapshot Repository</name>
224                         <url>${nexusproxy}${snapshotNexusPath}</url>
225                 </snapshotRepository>
226                 <site>
227                         <id>ecomp-site</id>
228                         <url>dav:${nexusproxy}${sitePath}</url>
229                 </site>
230         </distributionManagement>
231
232 </project>