blob: 29de4fd33583338d60f13dada51bbafffb207756 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?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 </developers>
64
65
66 <properties>
67 <maven.test.failure.ignore>false</maven.test.failure.ignore>
68 </properties>
69
70
71 <dependencies>
72 <dependency>
73 <groupId>org.onap.aaf.cadi</groupId>
74 <artifactId>aaf-cadi-core</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onap.aaf.auth</groupId>
79 <artifactId>aaf-auth-core</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>javax.mail</groupId>
84 <artifactId>mail</artifactId>
85 </dependency>
86 </dependencies>
87
88 <build>
89 <pluginManagement>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-javadoc-plugin</artifactId>
94 <version>2.10.4</version>
95 <configuration>
96 <failOnError>false</failOnError>
97 </configuration>
98 <executions>
99 <execution>
100 <id>attach-javadocs</id>
101 <goals>
102 <goal>jar</goal>
103 </goals>
104 </execution>
105 </executions>
106 </plugin>
107 <plugin>
108 <groupId>org.sonatype.plugins</groupId>
109 <artifactId>nexus-staging-maven-plugin</artifactId>
110 <version>1.6.7</version>
111 <extensions>true</extensions>
112 <configuration>
113 <nexusUrl>${nexusproxy}</nexusUrl>
114 <stagingProfileId>176c31dfe190a</stagingProfileId>
115 <serverId>ecomp-staging</serverId>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.jacoco</groupId>
120 <artifactId>jacoco-maven-plugin</artifactId>
121 <version>${jacoco.version}</version>
122 <configuration>
123 <excludes>
124 <exclude>**/gen/**</exclude>
125 <exclude>**/generated-sources/**</exclude>
126 <exclude>**/yang-gen/**</exclude>
127 <exclude>**/pax/**</exclude>
128 </excludes>
129 </configuration>
130 <executions>
131
132 <execution>
133 <id>pre-unit-test</id>
134 <goals>
135 <goal>prepare-agent</goal>
136 </goals>
137 <configuration>
138 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
139 <propertyName>surefireArgLine</propertyName>
140 </configuration>
141 </execution>
142
143
144 <execution>
145 <id>post-unit-test</id>
146 <phase>test</phase>
147 <goals>
148 <goal>report</goal>
149 </goals>
150 <configuration>
151 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
152 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
153 </configuration>
154 </execution>
155 <execution>
156 <id>pre-integration-test</id>
157 <phase>pre-integration-test</phase>
158 <goals>
159 <goal>prepare-agent</goal>
160 </goals>
161 <configuration>
162 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
163 <propertyName>failsafeArgLine</propertyName>
164 </configuration>
165 </execution>
166
167 <execution>
168 <id>post-integration-test</id>
169 <phase>post-integration-test</phase>
170 <goals>
171 <goal>report</goal>
172 </goals>
173 <configuration>
174 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
175 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
176 </configuration>
177 </execution>
178 </executions>
179 </plugin>
180 </plugins>
181 </pluginManagement>
182 </build>
183
184</project>