blob: 93224123e2f697848ec37122b1f8bd93c87986b5 [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>
sg481n72aacef2017-10-05 16:13:21 +000038
sg481nbd890c52017-08-28 12:11:35 -040039 <developers>
40 <developer>
41 <name>Jonathan Gathman</name>
42 <email></email>
43 <organization>ATT</organization>
44 <organizationUrl></organizationUrl>
45 </developer>
46 </developers>
47
48 <properties>
sg481n08e11042017-09-29 12:33:53 +000049 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040050 <project.swmVersion>30</project.swmVersion>
sg481na2ac6782017-09-18 16:35:50 -040051 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
52 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040053 <sonar.language>java</sonar.language>
sg481n0be0e062017-10-04 03:28:32 +000054 <sonar.skip>true</sonar.skip>
sg481n40cd3562017-09-01 13:12:31 -040055 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
56 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
57 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
58 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000059 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040060 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040061 <nexusproxy>https://nexus.onap.org</nexusproxy>
62 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
63 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
64 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000065 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040066 </properties>
67
68 <dependencies>
69 <dependency>
70 <groupId>org.onap.aaf.authz</groupId>
71 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040072 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040073
74 <exclusions>
75 <exclusion>
76 <groupId>javax.servlet</groupId>
77 <artifactId>servlet-api</artifactId>
78 </exclusion>
79 </exclusions>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onap.aaf.cadi</groupId>
84 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040085 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040086 </dependency>
87
88
89
90 </dependencies>
91
92 <build>
93 <plugins>
94 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>jaxb2-maven-plugin</artifactId>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-jar-plugin</artifactId>
102 <configuration>
103 <includes>
104 <include>**/*.class</include>
105 </includes>
106 </configuration>
107 <version>2.3.1</version>
108 </plugin>
sg481na2ac6782017-09-18 16:35:50 -0400109
sg481na9d21082017-09-23 14:26:06 +0000110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-javadoc-plugin</artifactId>
113 <version>2.10.4</version>
114 <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>
125 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-source-plugin</artifactId>
129 <version>2.2.1</version>
130 <executions>
131 <execution>
132 <id>attach-sources</id>
133 <goals>
134 <goal>jar-no-fork</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139
140<plugin>
141 <groupId>org.sonatype.plugins</groupId>
142 <artifactId>nexus-staging-maven-plugin</artifactId>
143 <version>1.6.7</version>
144 <extensions>true</extensions>
145 <configuration>
146 <nexusUrl>${nexusproxy}</nexusUrl>
147 <stagingProfileId>176c31dfe190a</stagingProfileId>
148 <serverId>ecomp-staging</serverId>
149 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400150 </plugin>
151 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000152 <groupId>org.jacoco</groupId>
153 <artifactId>jacoco-maven-plugin</artifactId>
154 <version>0.7.7.201606060606</version>
155 <configuration>
156 <dumpOnExit>true</dumpOnExit>
157 <includes>
158 <include>org.onap.aaf.*</include>
159 </includes>
160 </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>
sg481nf33ea6d2017-10-01 17:28:44 +0000202
sg481nbd890c52017-08-28 12:11:35 -0400203
204 </plugins>
205 </build>
206<distributionManagement>
207 <repository>
208 <id>ecomp-releases</id>
209 <name>AAF Release Repository</name>
210 <url>${nexusproxy}${releaseNexusPath}</url>
211 </repository>
212 <snapshotRepository>
213 <id>ecomp-snapshots</id>
214 <name>AAF Snapshot Repository</name>
215 <url>${nexusproxy}${snapshotNexusPath}</url>
216 </snapshotRepository>
217 <site>
218 <id>ecomp-site</id>
219 <url>dav:${nexusproxy}${sitePath}</url>
220 </site>
221 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000222
sg481nbd890c52017-08-28 12:11:35 -0400223</project>