blob: f6dd79fafbdd92d55f109349031929c057b988d8 [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>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
53
54 <properties>
sg481n08e11042017-09-29 12:33:53 +000055 <maven.test.failure.ignore>false</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040056 <project.swmVersion>0</project.swmVersion>
57 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481na2ac6782017-09-18 16:35:50 -040058 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000059 <!-- SONAR -->
60 <jacoco.version>0.7.7.201606060606</jacoco.version>
61 <sonar.skip>true</sonar.skip>
62 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
63 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
64 <!-- Default Sonar configuration -->
65 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
66 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
67 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
68 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481nbd890c52017-08-28 12:11:35 -040069 <nexusproxy>https://nexus.onap.org</nexusproxy>
70 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
71 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
72 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000073 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040074</properties>
75
76
77 <dependencies>
78 <dependency>
79 <groupId>org.onap.aaf.cadi</groupId>
80 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040081 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040082 </dependency>
83
84 <dependency>
85 <groupId>org.onap.aaf.authz</groupId>
86 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040087 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040088 </dependency>
89
90 <dependency>
91 <groupId>javax.mail</groupId>
92 <artifactId>mail</artifactId>
93 </dependency>
94 </dependencies>
95
96 <build>
97 <pluginManagement>
98 <plugins>
sg481na9d21082017-09-23 14:26:06 +000099 <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>
sg481nbd890c52017-08-28 12:11:35 -0400115 <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>
sg481n40cd3562017-09-01 13:12:31 -0400125 </plugin>
126 <plugin>
sg481n4ccc6b82017-10-04 17:29:37 +0000127 <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
172 <propertyName>failsafeArgLine</propertyName>
173 </configuration>
174 </execution>
175
176
177 <execution>
178 <id>post-integration-test</id>
179 <phase>post-integration-test</phase>
180 <goals>
181 <goal>report</goal>
182 </goals>
183 <configuration>
184 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
185 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
186 </configuration>
187 </execution>
188 </executions>
189 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000190
sg481nbd890c52017-08-28 12:11:35 -0400191 </plugins>
192 </pluginManagement>
193 </build>
194 <distributionManagement>
195 <repository>
196 <id>ecomp-releases</id>
197 <name>AAF Release Repository</name>
198 <url>${nexusproxy}${releaseNexusPath}</url>
199 </repository>
200 <snapshotRepository>
201 <id>ecomp-snapshots</id>
202 <name>AAF Snapshot Repository</name>
203 <url>${nexusproxy}${snapshotNexusPath}</url>
204 </snapshotRepository>
205 <site>
206 <id>ecomp-site</id>
207 <url>dav:${nexusproxy}${sitePath}</url>
208 </site>
209 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000210
sg481nbd890c52017-08-28 12:11:35 -0400211
212</project>