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