Release aaf/authz
[aaf/authz.git] / auth / auth-oauth / 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.15</version>
21                 <relativePath>../pom.xml</relativePath>
22         </parent>
23
24         <artifactId>aaf-auth-oauth</artifactId>
25         <name>AAF Auth OAuth Service</name>
26         <description>OAuth Component for AAF Auth</description>
27
28         <properties>
29                 <project.swmVersion>25</project.swmVersion>
30                 <!-- SONAR -->
31                 <!-- <sonar.skip>true</sonar.skip> -->
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         </properties>
47
48         <dependencies>
49                 <dependency>
50                         <groupId>org.onap.aaf.authz</groupId>
51                         <artifactId>aaf-auth-core</artifactId>
52                 </dependency>
53
54                 <dependency>
55                         <groupId>org.onap.aaf.authz</groupId>
56                         <artifactId>aaf-auth-cass</artifactId>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.onap.aaf.authz</groupId>
61                         <artifactId>aaf-cadi-aaf</artifactId>
62                 </dependency>
63         </dependencies>
64
65         <build>
66                 <plugins>
67                         <plugin>
68                                 <groupId>org.apache.maven.plugins</groupId>
69                                 <artifactId>maven-jar-plugin</artifactId>
70                                 <configuration>
71                                         <includes>
72                                                 <include>**/*.class</include>
73                                         </includes>
74                                 </configuration>
75                                 <version>2.3.1</version>
76                         </plugin>
77                         <!--This plugin's configuration is used to store Eclipse m2e settings 
78                                 only. It has no influence on the Maven build itself. -->
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-deploy-plugin</artifactId>
82                                 <configuration>
83                                         <skip>false</skip>
84                                 </configuration>
85                         </plugin>
86                         <plugin>
87                                 <groupId>org.codehaus.mojo</groupId>
88                                 <artifactId>appassembler-maven-plugin</artifactId>
89                                 <configuration>
90                                         <programs>
91                                                 <program>
92                                                         <mainClass>org.onap.aaf.auth.oauth.AAF_OAuth</mainClass>
93                                                         <name>oauth</name>
94                                                         <commandLineArguments>
95                                                                 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.oauth.props</commandLineArgument>
96                                                                 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/oauth</commandLineArgument>
97                                                                 <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument>
98                                                         </commandLineArguments>
99                                                 </program>
100                                         </programs>
101                                 </configuration>
102                         </plugin>
103                         <plugin>
104                                 <groupId>org.jacoco</groupId>
105                                 <artifactId>jacoco-maven-plugin</artifactId>
106                                 <configuration>
107                                         <excludes>
108                                                 <exclude>**/gen/**</exclude>
109                                                 <exclude>**/generated-sources/**</exclude>
110                                                 <exclude>**/yang-gen/**</exclude>
111                                                 <exclude>**/pax/**</exclude>
112                                         </excludes>
113                                 </configuration>
114                                 <executions>
115
116                                         <execution>
117                                                 <id>pre-unit-test</id>
118                                                 <goals>
119                                                         <goal>prepare-agent</goal>
120                                                 </goals>
121                                                 <configuration>
122                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
123                                                         <propertyName>surefireArgLine</propertyName>
124                                                 </configuration>
125                                         </execution>
126
127
128                                         <execution>
129                                                 <id>post-unit-test</id>
130                                                 <phase>test</phase>
131                                                 <goals>
132                                                         <goal>report</goal>
133                                                 </goals>
134                                                 <configuration>
135                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
136                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
137                                                 </configuration>
138                                         </execution>
139                                         <execution>
140                                                 <id>pre-integration-test</id>
141                                                 <phase>pre-integration-test</phase>
142                                                 <goals>
143                                                         <goal>prepare-agent</goal>
144                                                 </goals>
145                                                 <configuration>
146                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
147                                                         <propertyName>failsafeArgLine</propertyName>
148                                                 </configuration>
149                                         </execution>
150
151                                         <execution>
152                                                 <id>post-integration-test</id>
153                                                 <phase>post-integration-test</phase>
154                                                 <goals>
155                                                         <goal>report</goal>
156                                                 </goals>
157                                                 <configuration>
158                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
159                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
160                                                 </configuration>
161                                         </execution>
162                                 </executions>
163                         </plugin>
164                 </plugins>
165         </build>
166
167         <distributionManagement>
168                 <repository>
169                         <id>ecomp-releases</id>
170                         <name>AAF Release Repository</name>
171                         <url>${nexusproxy}${releaseNexusPath}</url>
172                 </repository>
173                 <snapshotRepository>
174                         <id>ecomp-snapshots</id>
175                         <name>AAF Snapshot Repository</name>
176                         <url>${nexusproxy}${snapshotNexusPath}</url>
177                 </snapshotRepository>
178                 <site>
179                         <id>ecomp-site</id>
180                         <url>dav:${nexusproxy}${sitePath}</url>
181                 </site>
182         </distributionManagement>
183
184 </project>