blob: 86bd4b2580381f9b9904794dea96d0e36d703b20 [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>
55 <maven.test.failure.ignore>false</maven.test.failure.ignore>
56 <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>
sg481n40cd3562017-09-01 13:12:31 -040059 <sonar.language>java</sonar.language>
60 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
61 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
62 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
63 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
64 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
65 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040066 <nexusproxy>https://nexus.onap.org</nexusproxy>
67 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
68 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
69 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000070 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040071</properties>
72
73
74 <dependencies>
75 <dependency>
76 <groupId>org.onap.aaf.cadi</groupId>
77 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040078 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80
81 <dependency>
82 <groupId>org.onap.aaf.authz</groupId>
83 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040084 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040085 </dependency>
86
87 <dependency>
88 <groupId>javax.mail</groupId>
89 <artifactId>mail</artifactId>
90 </dependency>
91 </dependencies>
92
93 <build>
94 <pluginManagement>
95 <plugins>
sg481na9d21082017-09-23 14:26:06 +000096 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-javadoc-plugin</artifactId>
99 <version>2.10.4</version>
100 <configuration>
101 <failOnError>false</failOnError>
102 </configuration>
103 <executions>
104 <execution>
105 <id>attach-javadocs</id>
106 <goals>
107 <goal>jar</goal>
108 </goals>
109 </execution>
110 </executions>
111 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400112 <plugin>
113 <groupId>org.sonatype.plugins</groupId>
114 <artifactId>nexus-staging-maven-plugin</artifactId>
115 <version>1.6.7</version>
116 <extensions>true</extensions>
117 <configuration>
118 <nexusUrl>${nexusproxy}</nexusUrl>
119 <stagingProfileId>176c31dfe190a</stagingProfileId>
120 <serverId>ecomp-staging</serverId>
121 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400122 </plugin>
123 <plugin>
124 <groupId>org.jacoco</groupId>
125 <artifactId>jacoco-maven-plugin</artifactId>
126 <version>0.7.7.201606060606</version>
127 <configuration>
128 <dumpOnExit>true</dumpOnExit>
129 <includes>
130 <include>org.onap.aaf.*</include>
131 </includes>
132 </configuration>
133 <executions>
134 <execution>
135 <id>pre-unit-test</id>
136 <goals>
137 <goal>prepare-agent</goal>
138 </goals>
139 <configuration>
140 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
141 <!-- <append>true</append> -->
142 </configuration>
143 </execution>
144 <execution>
145 <id>pre-integration-test</id>
146 <phase>pre-integration-test</phase>
147 <goals>
148 <goal>prepare-agent</goal>
149 </goals>
150 <configuration>
151 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
152 <!-- <append>true</append> -->
153 </configuration>
154 </execution>
155 <execution>
156 <goals>
157 <goal>merge</goal>
158 </goals>
159 <phase>post-integration-test</phase>
160 <configuration>
161 <fileSets>
162 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
163 <directory>${project.build.directory}/coverage-reports</directory>
164 <includes>
165 <include>*.exec</include>
166 </includes>
167 </fileSet>
168 </fileSets>
169 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
170 </configuration>
171 </execution>
172 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400173 </plugin>
174 </plugins>
175 </pluginManagement>
176 </build>
177 <distributionManagement>
178 <repository>
179 <id>ecomp-releases</id>
180 <name>AAF Release Repository</name>
181 <url>${nexusproxy}${releaseNexusPath}</url>
182 </repository>
183 <snapshotRepository>
184 <id>ecomp-snapshots</id>
185 <name>AAF Snapshot Repository</name>
186 <url>${nexusproxy}${snapshotNexusPath}</url>
187 </snapshotRepository>
188 <site>
189 <id>ecomp-site</id>
190 <url>dav:${nexusproxy}${sitePath}</url>
191 </site>
192 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000193
sg481nbd890c52017-08-28 12:11:35 -0400194
195</project>