Modify authz pom files.
[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>parent</artifactId>
27                 <relativePath>../pom.xml</relativePath>
28                 <groupId>org.onap.aaf.auth</groupId>
29                 <version>2.1.0-SNAPSHOT</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         </properties>
77
78
79         <dependencies>
80                 <dependency>
81                         <groupId>org.onap.aaf.cadi</groupId>
82                         <artifactId>aaf-cadi-core</artifactId>
83                 </dependency>
84
85                 <dependency>
86                         <groupId>org.onap.aaf.auth</groupId>
87                         <artifactId>aaf-auth-core</artifactId>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>javax.mail</groupId>
92                         <artifactId>mail</artifactId>
93                 </dependency>
94         </dependencies>
95
96         <build>
97                 <pluginManagement>
98                         <plugins>
99                                 <plugin>
100                                         <groupId>org.apache.maven.plugins</groupId>
101                                         <artifactId>maven-javadoc-plugin</artifactId>
102                                         <version>2.10.4</version>
103                                         <configuration>
104                                                 <failOnError>false</failOnError>
105                                         </configuration>
106                                         <executions>
107                                                 <execution>
108                                                         <id>attach-javadocs</id>
109                                                         <goals>
110                                                                 <goal>jar</goal>
111                                                         </goals>
112                                                 </execution>
113                                         </executions>
114                                 </plugin>
115                                 <plugin>
116                                         <groupId>org.sonatype.plugins</groupId>
117                                         <artifactId>nexus-staging-maven-plugin</artifactId>
118                                         <version>1.6.7</version>
119                                         <extensions>true</extensions>
120                                         <configuration>
121                                                 <nexusUrl>${nexusproxy}</nexusUrl>
122                                                 <stagingProfileId>176c31dfe190a</stagingProfileId>
123                                                 <serverId>ecomp-staging</serverId>
124                                         </configuration>
125                                 </plugin>
126                                 <plugin>
127                                         <groupId>org.jacoco</groupId>
128                                         <artifactId>jacoco-maven-plugin</artifactId>
129                                         <version>${jacoco.version}</version>
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
140                                                 <execution>
141                                                         <id>pre-unit-test</id>
142                                                         <goals>
143                                                                 <goal>prepare-agent</goal>
144                                                         </goals>
145                                                         <configuration>
146                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
147                                                                 <propertyName>surefireArgLine</propertyName>
148                                                         </configuration>
149                                                 </execution>
150
151
152                                                 <execution>
153                                                         <id>post-unit-test</id>
154                                                         <phase>test</phase>
155                                                         <goals>
156                                                                 <goal>report</goal>
157                                                         </goals>
158                                                         <configuration>
159                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
160                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
161                                                         </configuration>
162                                                 </execution>
163                                                 <execution>
164                                                         <id>pre-integration-test</id>
165                                                         <phase>pre-integration-test</phase>
166                                                         <goals>
167                                                                 <goal>prepare-agent</goal>
168                                                         </goals>
169                                                         <configuration>
170                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
171                                                                 <propertyName>failsafeArgLine</propertyName>
172                                                         </configuration>
173                                                 </execution>
174
175                                                 <execution>
176                                                         <id>post-integration-test</id>
177                                                         <phase>post-integration-test</phase>
178                                                         <goals>
179                                                                 <goal>report</goal>
180                                                         </goals>
181                                                         <configuration>
182                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
183                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
184                                                         </configuration>
185                                                 </execution>
186                                         </executions>
187                                 </plugin>
188                         </plugins>
189                 </pluginManagement>
190         </build>
191
192 </project>