blob: 7d74359c7c292aa0961a24fc08cc68471644f446 [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-gw</artifactId>
35 <name>Authz Gate/Wall</name>
36 <description>GW API</description>
37 <url>https://github.com/att/AAF</url>
38 <licenses>
39 <license>
40 <name>BSD License</name>
41 <url> </url>
42 </license>
43 </licenses>
44 <developers>
45 <developer>
46 <name>Jonathan Gathman</name>
47 <email></email>
48 <organization>ATT</organization>
49 <organizationUrl></organizationUrl>
50 </developer>
51 </developers>
52
53 <properties>
sg481nbd890c52017-08-28 12:11:35 -040054 <project.swmVersion>30</project.swmVersion>
sg481na2ac6782017-09-18 16:35:50 -040055 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
56 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040057 <sonar.language>java</sonar.language>
58 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
59 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
60 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
61 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481n92685f22017-09-29 01:12:16 +000062 <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040063 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040064 <nexusproxy>https://nexus.onap.org</nexusproxy>
65 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
66 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
67 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000068 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040069 </properties>
70
71 <dependencies>
72 <dependency>
73 <groupId>org.onap.aaf.authz</groupId>
74 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040075 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040076
77 <exclusions>
78 <exclusion>
79 <groupId>javax.servlet</groupId>
80 <artifactId>servlet-api</artifactId>
81 </exclusion>
82 </exclusions>
83 </dependency>
84
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 </dependency>
90
91
92
93 </dependencies>
94
95 <build>
96 <plugins>
97 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>jaxb2-maven-plugin</artifactId>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-jar-plugin</artifactId>
105 <configuration>
106 <includes>
107 <include>**/*.class</include>
108 </includes>
109 </configuration>
110 <version>2.3.1</version>
111 </plugin>
sg481na2ac6782017-09-18 16:35:50 -0400112
sg481na9d21082017-09-23 14:26:06 +0000113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-javadoc-plugin</artifactId>
116 <version>2.10.4</version>
117 <configuration>
118 <failOnError>false</failOnError>
119 </configuration>
120 <executions>
121 <execution>
122 <id>attach-javadocs</id>
123 <goals>
124 <goal>jar</goal>
125 </goals>
126 </execution>
127 </executions>
128 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-source-plugin</artifactId>
132 <version>2.2.1</version>
133 <executions>
134 <execution>
135 <id>attach-sources</id>
136 <goals>
137 <goal>jar-no-fork</goal>
138 </goals>
139 </execution>
140 </executions>
141 </plugin>
142
143<plugin>
144 <groupId>org.sonatype.plugins</groupId>
145 <artifactId>nexus-staging-maven-plugin</artifactId>
146 <version>1.6.7</version>
147 <extensions>true</extensions>
148 <configuration>
149 <nexusUrl>${nexusproxy}</nexusUrl>
150 <stagingProfileId>176c31dfe190a</stagingProfileId>
151 <serverId>ecomp-staging</serverId>
152 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400153 </plugin>
154 <plugin>
155 <groupId>org.jacoco</groupId>
156 <artifactId>jacoco-maven-plugin</artifactId>
157 <version>0.7.7.201606060606</version>
158 <configuration>
159 <dumpOnExit>true</dumpOnExit>
sg481n40cd3562017-09-01 13:12:31 -0400160 </configuration>
161 <executions>
162 <execution>
163 <id>pre-unit-test</id>
164 <goals>
165 <goal>prepare-agent</goal>
166 </goals>
167 <configuration>
168 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
169 <!-- <append>true</append> -->
170 </configuration>
171 </execution>
172 <execution>
173 <id>pre-integration-test</id>
174 <phase>pre-integration-test</phase>
175 <goals>
176 <goal>prepare-agent</goal>
177 </goals>
178 <configuration>
179 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
180 <!-- <append>true</append> -->
181 </configuration>
182 </execution>
183 <execution>
184 <goals>
185 <goal>merge</goal>
186 </goals>
187 <phase>post-integration-test</phase>
188 <configuration>
189 <fileSets>
190 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
191 <directory>${project.build.directory}/coverage-reports</directory>
192 <includes>
193 <include>*.exec</include>
194 </includes>
195 </fileSet>
196 </fileSets>
197 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
198 </configuration>
199 </execution>
200 </executions>
201 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400202
203 </plugins>
204 </build>
205<distributionManagement>
206 <repository>
207 <id>ecomp-releases</id>
208 <name>AAF Release Repository</name>
209 <url>${nexusproxy}${releaseNexusPath}</url>
210 </repository>
211 <snapshotRepository>
212 <id>ecomp-snapshots</id>
213 <name>AAF Snapshot Repository</name>
214 <url>${nexusproxy}${snapshotNexusPath}</url>
215 </snapshotRepository>
216 <site>
217 <id>ecomp-site</id>
218 <url>dav:${nexusproxy}${sitePath}</url>
219 </site>
220 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000221
sg481nbd890c52017-08-28 12:11:35 -0400222</project>