blob: fde47d2348a387f985a1773594ab43598de831d5 [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
4 -->
5
6<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8 <modelVersion>4.0.0</modelVersion>
9 <parent>
10 <groupId>com.att.authz</groupId>
11 <artifactId>parent</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040012 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040013 <relativePath>../pom.xml</relativePath>
14 </parent>
15
16 <artifactId>authz-gui</artifactId>
17 <name>Authz GUI (Mobile First)</name>
18 <description>GUI for Authz Management</description>
19 <url>https://github.com/att/AAF</url>
20 <licenses>
21 <license>
22 <name>BSD License</name>
23 <url> </url>
24 </license>
25 </licenses>
26 <developers>
27 <developer>
28 <name>Jonathan Gathman</name>
29 <email></email>
30 <organization>ATT</organization>
31 <organizationUrl></organizationUrl>
32 </developer>
33 </developers>
34
35
36 <properties>
sg481n08e11042017-09-29 12:33:53 +000037 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040038 <project.swmVersion>28</project.swmVersion>
sg481na9d21082017-09-23 14:26:06 +000039 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40 <skipTests>false</skipTests>
41 <project.interfaceVersion>1.0.0-SNAPSHOT</project.interfaceVersion>
sg481na2ac6782017-09-18 16:35:50 -040042 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
43 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481na9d21082017-09-23 14:26:06 +000044 <project.dme2Version>3.1.200</project.dme2Version>
45 <sonar.language>java</sonar.language>
sg481n0be0e062017-10-04 03:28:32 +000046 <sonar.skip>true</sonar.skip>
sg481na9d21082017-09-23 14:26:06 +000047 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
48 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
49 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
50 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000051 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481na9d21082017-09-23 14:26:06 +000052 <sonar.projectVersion>${project.version}</sonar.projectVersion>
53 <nexusproxy>https://nexus.onap.org</nexusproxy>
54 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
55 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
56 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
57 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040058 </properties>
59
60
61 <dependencies>
62 <dependency>
63 <groupId>com.att.authz</groupId>
64 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040065 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040066 <exclusions>
67 <exclusion>
68 <groupId>javax.servlet</groupId>
69 <artifactId>servlet-api</artifactId>
70 </exclusion>
71 </exclusions>
72 </dependency>
73
74 <dependency>
75 <groupId>com.att.authz</groupId>
76 <artifactId>authz-client</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>com.att.authz</groupId>
82 <artifactId>authz-att</artifactId>
83 </dependency> -->
84
85
86 <dependency>
87 <groupId>com.att.authz</groupId>
88 <artifactId>authz-cmd</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040089 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040090 <exclusions>
91 <exclusion>
92 <groupId>org.slf4j</groupId>
93 <artifactId>slf4j-log4j12</artifactId>
94 </exclusion>
95 <exclusion>
96 <groupId>log4j</groupId>
97 <artifactId>log4j</artifactId>
98 </exclusion>
99 </exclusions>
100 </dependency>
101
102 <dependency>
103 <groupId>org.onap.aaf.cadi</groupId>
104 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400105 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400106 </dependency>
107
108 <dependency>
109 <groupId>org.onap.aaf.cadi</groupId>
110 <artifactId>cadi-tguard</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400111 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400112 </dependency>
113
114 <dependency>
115 <groupId>org.onap.aaf.cadi</groupId>
116 <artifactId>cadi-client</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400117 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400118 </dependency>
119
120 <dependency>
121 <groupId>gso</groupId>
122 <artifactId>GLCookieDecryption</artifactId>
123 </dependency>
124
125 <dependency>
126 <groupId>org.onap.aaf.inno</groupId>
127 <artifactId>xgen</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400128 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400129 </dependency>
130
131 </dependencies>
132
133 <build>
134 <plugins>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-jar-plugin</artifactId>
138 <configuration>
139 <includes>
140 <include>**/*.class</include>
141 </includes>
142 </configuration>
143 <version>2.3.1</version>
144 </plugin>
145
146 <plugin>
147 <artifactId>maven-assembly-plugin</artifactId>
148 <executions>
149 <execution>
150 <id>swm</id>
151 <phase>package</phase>
152 <goals>
153 <goal>single</goal>
154 </goals>
155 <configuration>
156 <finalName>authz-gui-${project.version}.${project.swmVersion}</finalName>
157
158 <descriptors>
159 <descriptor>../authz-service/src/main/assemble/swm.xml</descriptor>
160 </descriptors>
161 <archive>
162 </archive>
163 </configuration>
164 </execution>
165 </executions>
166 </plugin>
167
sg481nbd890c52017-08-28 12:11:35 -0400168
169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000172 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400173 <configuration>
174 <failOnError>false</failOnError>
175 </configuration>
176 <executions>
177 <execution>
178 <id>attach-javadocs</id>
179 <goals>
180 <goal>jar</goal>
181 </goals>
182 </execution>
183 </executions>
sg481na9d21082017-09-23 14:26:06 +0000184 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400185
186
187 <plugin>
188 <groupId>org.apache.maven.plugins</groupId>
189 <artifactId>maven-source-plugin</artifactId>
190 <version>2.2.1</version>
191 <executions>
192 <execution>
193 <id>attach-sources</id>
194 <goals>
195 <goal>jar-no-fork</goal>
196 </goals>
197 </execution>
198 </executions>
199 </plugin>
200
sg481n40cd3562017-09-01 13:12:31 -0400201<plugin>
202 <groupId>org.sonatype.plugins</groupId>
203 <artifactId>nexus-staging-maven-plugin</artifactId>
204 <version>1.6.7</version>
205 <extensions>true</extensions>
206 <configuration>
207 <nexusUrl>${nexusproxy}</nexusUrl>
208 <stagingProfileId>176c31dfe190a</stagingProfileId>
209 <serverId>ecomp-staging</serverId>
sg481n40cd3562017-09-01 13:12:31 -0400210 </configuration>
211 </plugin>
212 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000213 <groupId>org.jacoco</groupId>
214 <artifactId>jacoco-maven-plugin</artifactId>
215 <version>0.7.7.201606060606</version>
216 <configuration>
217 <dumpOnExit>true</dumpOnExit>
218 <includes>
219 <include>org.onap.aaf.*</include>
220 </includes>
221 </configuration>
222 <executions>
223 <execution>
224 <id>pre-unit-test</id>
225 <goals>
226 <goal>prepare-agent</goal>
227 </goals>
228 <configuration>
229 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
230 <!-- <append>true</append> -->
231 </configuration>
232 </execution>
233 <execution>
234 <id>pre-integration-test</id>
235 <phase>pre-integration-test</phase>
236 <goals>
237 <goal>prepare-agent</goal>
238 </goals>
239 <configuration>
240 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
241 <!-- <append>true</append> -->
242 </configuration>
243 </execution>
244 <execution>
245 <goals>
246 <goal>merge</goal>
247 </goals>
248 <phase>post-integration-test</phase>
249 <configuration>
250 <fileSets>
251 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
252 <directory>${project.build.directory}/coverage-reports</directory>
253 <includes>
254 <include>*.exec</include>
255 </includes>
256 </fileSet>
257 </fileSets>
258 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
259 </configuration>
260 </execution>
261 </executions>
262 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000263
sg481nbd890c52017-08-28 12:11:35 -0400264 </plugins>
sg481nbd890c52017-08-28 12:11:35 -0400265 </build>
sg481na9d21082017-09-23 14:26:06 +0000266<distributionManagement>
267 <repository>
268 <id>ecomp-releases</id>
269 <name>AAF Release Repository</name>
270 <url>${nexusproxy}${releaseNexusPath}</url>
271 </repository>
272 <snapshotRepository>
273 <id>ecomp-snapshots</id>
274 <name>AAF Snapshot Repository</name>
275 <url>${nexusproxy}${snapshotNexusPath}</url>
276 </snapshotRepository>
277 <site>
278 <id>ecomp-site</id>
279 <url>dav:${nexusproxy}${sitePath}</url>
280 </site>
281 </distributionManagement>
sg481nbd890c52017-08-28 12:11:35 -0400282</project>