blob: f7b62a8d27dddf7e0b15ae15570a6e755c71eaa8 [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>
30 <version>1.0.0-SNAPSHOT</version>
31 <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>
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>
63 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
64 <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>
69 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
70</properties>
71
72
73 <dependencies>
74 <dependency>
75 <groupId>org.onap.aaf.cadi</groupId>
76 <artifactId>cadi-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040077 <version>${project.version}</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>
95 <plugin>
96 <groupId>org.sonatype.plugins</groupId>
97 <artifactId>nexus-staging-maven-plugin</artifactId>
98 <version>1.6.7</version>
99 <extensions>true</extensions>
100 <configuration>
101 <nexusUrl>${nexusproxy}</nexusUrl>
102 <stagingProfileId>176c31dfe190a</stagingProfileId>
103 <serverId>ecomp-staging</serverId>
104 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400105 </plugin>
106 <plugin>
107 <groupId>org.jacoco</groupId>
108 <artifactId>jacoco-maven-plugin</artifactId>
109 <version>0.7.7.201606060606</version>
110 <configuration>
111 <dumpOnExit>true</dumpOnExit>
112 <includes>
113 <include>org.onap.aaf.*</include>
114 </includes>
115 </configuration>
116 <executions>
117 <execution>
118 <id>pre-unit-test</id>
119 <goals>
120 <goal>prepare-agent</goal>
121 </goals>
122 <configuration>
123 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
124 <!-- <append>true</append> -->
125 </configuration>
126 </execution>
127 <execution>
128 <id>pre-integration-test</id>
129 <phase>pre-integration-test</phase>
130 <goals>
131 <goal>prepare-agent</goal>
132 </goals>
133 <configuration>
134 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
135 <!-- <append>true</append> -->
136 </configuration>
137 </execution>
138 <execution>
139 <goals>
140 <goal>merge</goal>
141 </goals>
142 <phase>post-integration-test</phase>
143 <configuration>
144 <fileSets>
145 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
146 <directory>${project.build.directory}/coverage-reports</directory>
147 <includes>
148 <include>*.exec</include>
149 </includes>
150 </fileSet>
151 </fileSets>
152 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
153 </configuration>
154 </execution>
155 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400156 </plugin>
157 </plugins>
158 </pluginManagement>
159 </build>
160 <distributionManagement>
161 <repository>
162 <id>ecomp-releases</id>
163 <name>AAF Release Repository</name>
164 <url>${nexusproxy}${releaseNexusPath}</url>
165 </repository>
166 <snapshotRepository>
167 <id>ecomp-snapshots</id>
168 <name>AAF Snapshot Repository</name>
169 <url>${nexusproxy}${snapshotNexusPath}</url>
170 </snapshotRepository>
171 <site>
172 <id>ecomp-site</id>
173 <url>dav:${nexusproxy}${sitePath}</url>
174 </site>
175 </distributionManagement>
176<pluginRepositories>
177 <pluginRepository>
178 <id>onap-plugin-snapshots</id>
179 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
180 </pluginRepository>
181 </pluginRepositories>
182
183 <repositories>
184 <repository>
185 <id>central</id>
186 <name>Maven 2 repository 2</name>
187 <url>http://repo2.maven.org/maven2/</url>
188 </repository>
189 <repository>
190 <id>onap-jar-snapshots</id>
191 <url>https://nexus.onap.org/content/repositories/snapshots</url>
192 </repository>
193 <repository>
194 <id>spring-repo</id>
195 <name>Spring repo</name>
196 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
197 </repository>
198 <repository>
199 <id>repository.jboss.org-public</id>
200 <name>JBoss.org Maven repository</name>
201 <url>https://repository.jboss.org/nexus/content/groups/public</url>
202 </repository>
203 </repositories>
204
205</project>