blob: ef361b48e3731fe48825ba555af26ed6cffc8c25 [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/xsd/maven-4.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-core</artifactId>
35 <name>Authz Core</name>
36 <description>Core Libraries for Authz</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<properties>
54 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481na2ac6782017-09-18 16:35:50 -040055 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
sg481n40cd3562017-09-01 13:12:31 -040056 <sonar.language>java</sonar.language>
57 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
58 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
59 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
60 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000061 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040062 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040063 <nexusproxy>https://nexus.onap.org</nexusproxy>
64 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
65 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
66 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481n2bc35382017-09-23 15:50:15 +000067 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040068</properties>
69 <dependencies>
70 <dependency>
71 <groupId>org.onap.aaf.inno</groupId>
72 <artifactId>env</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040073 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040074 </dependency>
75 <dependency>
76 <groupId>org.onap.aaf.inno</groupId>
77 <artifactId>log4j</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040078 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80 <dependency>
81 <groupId>org.onap.aaf.inno</groupId>
82 <artifactId>rosetta</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040083 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040084 </dependency>
85 <dependency>
86 <groupId>org.onap.aaf.cadi</groupId>
87 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040088 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040089 <exclusions>
90 <exclusion>
91 <groupId>javax.servlet</groupId>
92 <artifactId>servlet-api</artifactId>
93 </exclusion>
94 </exclusions>
95
96 </dependency>
97 <dependency>
98 <groupId>javax.servlet</groupId>
99 <artifactId>servlet-api</artifactId>
100 </dependency>
101
102 </dependencies>
103
104 <build>
105 <plugins>
106 </plugins>
107 <pluginManagement>
108 <plugins>
sg481na2ac6782017-09-18 16:35:50 -0400109
sg481nbd890c52017-08-28 12:11:35 -0400110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000113 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400114 <configuration>
115 <failOnError>false</failOnError>
116 </configuration>
117 <executions>
118 <execution>
119 <id>attach-javadocs</id>
120 <goals>
121 <goal>jar</goal>
122 </goals>
123 </execution>
124 </executions>
sg481na9d21082017-09-23 14:26:06 +0000125 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400126
127
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-source-plugin</artifactId>
131 <version>2.2.1</version>
132 <executions>
133 <execution>
134 <id>attach-sources</id>
135 <goals>
136 <goal>jar-no-fork</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
141
142 <plugin>
143 <groupId>org.sonatype.plugins</groupId>
144 <artifactId>nexus-staging-maven-plugin</artifactId>
145 <version>1.6.7</version>
146 <extensions>true</extensions>
147 <configuration>
148 <nexusUrl>${nexusproxy}</nexusUrl>
149 <stagingProfileId>176c31dfe190a</stagingProfileId>
150 <serverId>ecomp-staging</serverId>
151 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400152 </plugin>
153 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000154 <groupId>org.jacoco</groupId>
155 <artifactId>jacoco-maven-plugin</artifactId>
156 <version>0.7.7.201606060606</version>
157 <configuration>
158 <dumpOnExit>true</dumpOnExit>
159 <includes>
160 <include>org.onap.aaf.*</include>
161 </includes>
162 </configuration>
163 <executions>
164 <execution>
165 <id>pre-unit-test</id>
166 <goals>
167 <goal>prepare-agent</goal>
168 </goals>
169 <configuration>
170 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
171 <!-- <append>true</append> -->
172 </configuration>
173 </execution>
174 <execution>
175 <id>pre-integration-test</id>
176 <phase>pre-integration-test</phase>
177 <goals>
178 <goal>prepare-agent</goal>
179 </goals>
180 <configuration>
181 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
182 <!-- <append>true</append> -->
183 </configuration>
184 </execution>
185 <execution>
186 <goals>
187 <goal>merge</goal>
188 </goals>
189 <phase>post-integration-test</phase>
190 <configuration>
191 <fileSets>
192 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
193 <directory>${project.build.directory}/coverage-reports</directory>
194 <includes>
195 <include>*.exec</include>
196 </includes>
197 </fileSet>
198 </fileSets>
199 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
200 </configuration>
201 </execution>
202 </executions>
203 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400204
205 </plugins>
206 </pluginManagement>
207 </build>
208 <distributionManagement>
209 <repository>
210 <id>ecomp-releases</id>
211 <name>AAF Release Repository</name>
212 <url>${nexusproxy}${releaseNexusPath}</url>
213 </repository>
214 <snapshotRepository>
215 <id>ecomp-snapshots</id>
216 <name>AAF Snapshot Repository</name>
217 <url>${nexusproxy}${snapshotNexusPath}</url>
218 </snapshotRepository>
219 <site>
220 <id>ecomp-site</id>
221 <url>dav:${nexusproxy}${sitePath}</url>
222 </site>
223 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000224
sg481nbd890c52017-08-28 12:11:35 -0400225
226</project>
227