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