blob: 3153db8548e0ce52fef644bf3f7c495a4a276ddf [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright © 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 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.aaf.authz</groupId>
29 <artifactId>parent</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040030 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040031 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-defOrg</artifactId>
35 <name>Default Organization</name>
36 <description>Example Organization Module</description>
37 <packaging>jar</packaging>
38 <url>https://github.com/att/AAF</url>
sg481n72aacef2017-10-05 16:13:21 +000039
sg481nbd890c52017-08-28 12:11:35 -040040 <developers>
41 <developer>
42 <name>Jonathan Gathman</name>
43 <email></email>
44 <organization>ATT</organization>
45 <organizationUrl></organizationUrl>
46 </developer>
47 </developers>
48
49 <properties>
sg481n08e11042017-09-29 12:33:53 +000050 <maven.test.failure.ignore>false</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040051 <project.swmVersion>0</project.swmVersion>
52 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481na2ac6782017-09-18 16:35:50 -040053 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000054 <!-- SONAR -->
55 <jacoco.version>0.7.7.201606060606</jacoco.version>
56 <sonar.skip>true</sonar.skip>
57 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
58 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
59 <!-- Default Sonar configuration -->
60 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
61 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
62 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
63 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481nbd890c52017-08-28 12:11:35 -040064 <nexusproxy>https://nexus.onap.org</nexusproxy>
65 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
66 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
67 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000068 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040069</properties>
70
71
72 <dependencies>
73 <dependency>
74 <groupId>org.onap.aaf.cadi</groupId>
75 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040076 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040077 </dependency>
78
79 <dependency>
80 <groupId>org.onap.aaf.authz</groupId>
81 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040082 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040083 </dependency>
84
85 <dependency>
86 <groupId>javax.mail</groupId>
87 <artifactId>mail</artifactId>
88 </dependency>
89 </dependencies>
90
91 <build>
92 <pluginManagement>
93 <plugins>
sg481na9d21082017-09-23 14:26:06 +000094 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-javadoc-plugin</artifactId>
97 <version>2.10.4</version>
98 <configuration>
99 <failOnError>false</failOnError>
100 </configuration>
101 <executions>
102 <execution>
103 <id>attach-javadocs</id>
104 <goals>
105 <goal>jar</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400110 <plugin>
111 <groupId>org.sonatype.plugins</groupId>
112 <artifactId>nexus-staging-maven-plugin</artifactId>
113 <version>1.6.7</version>
114 <extensions>true</extensions>
115 <configuration>
116 <nexusUrl>${nexusproxy}</nexusUrl>
117 <stagingProfileId>176c31dfe190a</stagingProfileId>
118 <serverId>ecomp-staging</serverId>
119 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400120 </plugin>
121 <plugin>
sg481n4ccc6b82017-10-04 17:29:37 +0000122 <groupId>org.jacoco</groupId>
123 <artifactId>jacoco-maven-plugin</artifactId>
124 <version>${jacoco.version}</version>
125 <configuration>
126 <excludes>
127 <exclude>**/gen/**</exclude>
128 <exclude>**/generated-sources/**</exclude>
129 <exclude>**/yang-gen/**</exclude>
130 <exclude>**/pax/**</exclude>
131 </excludes>
132 </configuration>
133 <executions>
134
135 <execution>
136 <id>pre-unit-test</id>
137 <goals>
138 <goal>prepare-agent</goal>
139 </goals>
140 <configuration>
141 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
142 <propertyName>surefireArgLine</propertyName>
143 </configuration>
144 </execution>
145
146
147 <execution>
148 <id>post-unit-test</id>
149 <phase>test</phase>
150 <goals>
151 <goal>report</goal>
152 </goals>
153 <configuration>
154 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
155 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
156 </configuration>
157 </execution>
158 <execution>
159 <id>pre-integration-test</id>
160 <phase>pre-integration-test</phase>
161 <goals>
162 <goal>prepare-agent</goal>
163 </goals>
164 <configuration>
165 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
166
167 <propertyName>failsafeArgLine</propertyName>
168 </configuration>
169 </execution>
170
171
172 <execution>
173 <id>post-integration-test</id>
174 <phase>post-integration-test</phase>
175 <goals>
176 <goal>report</goal>
177 </goals>
178 <configuration>
179 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
180 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
181 </configuration>
182 </execution>
183 </executions>
184 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000185
sg481nbd890c52017-08-28 12:11:35 -0400186 </plugins>
187 </pluginManagement>
188 </build>
189 <distributionManagement>
190 <repository>
191 <id>ecomp-releases</id>
192 <name>AAF Release Repository</name>
193 <url>${nexusproxy}${releaseNexusPath}</url>
194 </repository>
195 <snapshotRepository>
196 <id>ecomp-snapshots</id>
197 <name>AAF Snapshot Repository</name>
198 <url>${nexusproxy}${snapshotNexusPath}</url>
199 </snapshotRepository>
200 <site>
201 <id>ecomp-site</id>
202 <url>dav:${nexusproxy}${sitePath}</url>
203 </site>
204 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000205
sg481nbd890c52017-08-28 12:11:35 -0400206
207</project>