Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 2 | <!-- * ============LICENSE_START==================================================== |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 3 | * org.onap.aaf * =========================================================================== |
| 4 | * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =========================================================================== |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); * you may |
| 6 | not use this file except in compliance with the License. * You may obtain |
| 7 | a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * |
| 8 | * Unless required by applicable law or agreed to in writing, software * distributed |
| 9 | under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES |
| 10 | OR CONDITIONS OF ANY KIND, either express or implied. * See the License for |
| 11 | the specific language governing permissions and * limitations under the License. |
| 12 | * ============LICENSE_END==================================================== |
| 13 | * --> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 14 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 15 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <groupId>org.onap.aaf.authz</groupId> |
| 19 | <artifactId>authparent</artifactId> |
Instrumental | 54f1bd2 | 2019-08-06 17:34:04 -0500 | [diff] [blame] | 20 | <version>2.1.16-SNAPSHOT</version> |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 21 | <relativePath>../pom.xml</relativePath> |
| 22 | </parent> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 23 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 24 | <artifactId>aaf-auth-gui</artifactId> |
| 25 | <name>AAF Auth GUI</name> |
| 26 | <description>GUI Component for AAF Auth Management</description> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 27 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 28 | <properties> |
| 29 | <maven.test.failure.ignore>true</maven.test.failure.ignore> |
| 30 | <!-- SONAR --> |
| 31 | <!-- <sonar.skip>true</sonar.skip> --> |
| 32 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
| 33 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 34 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 35 | <!-- Default Sonar configuration --> |
| 36 | <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths> |
| 37 | <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths> |
| 38 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list |
| 39 | below --> |
| 40 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
| 41 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 42 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 43 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 44 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
| 45 | <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath> |
| 46 | </properties> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 47 | |
| 48 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.aaf.authz</groupId> |
| 52 | <artifactId>aaf-auth-core</artifactId> |
| 53 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 54 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.onap.aaf.authz</groupId> |
| 57 | <artifactId>aaf-auth-client</artifactId> |
| 58 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 59 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onap.aaf.authz</groupId> |
| 62 | <artifactId>aaf-auth-cmd</artifactId> |
| 63 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 64 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 65 | <!-- Add the Organizations you wish to support. You can delete ONAP if |
| 66 | you have something else Match with Property Entry: Organization.<root ns>, |
| 67 | i.e. Organization.onap.org=org.onap.org.DefaultOrg --> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.aaf.authz</groupId> |
| 70 | <artifactId>aaf-auth-deforg</artifactId> |
| 71 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 72 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.onap.aaf.authz</groupId> |
| 75 | <artifactId>aaf-cadi-aaf</artifactId> |
| 76 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 77 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.onap.aaf.authz</groupId> |
| 80 | <artifactId>aaf-cadi-client</artifactId> |
| 81 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 82 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.onap.aaf.authz</groupId> |
| 85 | <artifactId>aaf-misc-xgen</artifactId> |
| 86 | </dependency> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 87 | |
| 88 | |
| 89 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 90 | </dependencies> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 91 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 92 | <build> |
| 93 | <plugins> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-jar-plugin</artifactId> |
| 97 | <configuration> |
| 98 | <includes> |
| 99 | <include>**/*.class</include> |
| 100 | </includes> |
| 101 | </configuration> |
| 102 | <version>2.3.1</version> |
| 103 | </plugin> |
| 104 | <plugin> |
| 105 | <groupId>org.codehaus.mojo</groupId> |
| 106 | <artifactId>appassembler-maven-plugin</artifactId> |
| 107 | <configuration> |
| 108 | <programs> |
| 109 | <program> |
| 110 | <mainClass>org.onap.aaf.auth.gui.AAF_GUI</mainClass> |
| 111 | <name>gui</name> |
| 112 | <commandLineArguments> |
| 113 | <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.gui.props</commandLineArgument> |
| 114 | <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/gui</commandLineArgument> |
| 115 | <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument> |
| 116 | </commandLineArguments> |
| 117 | <jvmSettings> |
| 118 | <extraArguments> |
| 119 | <extraArgument>-Daaf_cfa_web_path=$BASEDIR/theme/onap</extraArgument> |
| 120 | </extraArguments> |
| 121 | </jvmSettings> |
| 122 | </program> |
| 123 | </programs> |
| 124 | <copyConfigurationDirectory>true</copyConfigurationDirectory> |
| 125 | <configurationDirectory>theme</configurationDirectory> |
| 126 | <configurationSourceDirectory>theme</configurationSourceDirectory> |
| 127 | </configuration> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 128 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 129 | </plugin> |
| 130 | <plugin> |
| 131 | <groupId>org.jacoco</groupId> |
| 132 | <artifactId>jacoco-maven-plugin</artifactId> |
| 133 | <configuration> |
| 134 | <excludes> |
| 135 | <exclude>**/gen/**</exclude> |
| 136 | <exclude>**/generated-sources/**</exclude> |
| 137 | <exclude>**/yang-gen/**</exclude> |
| 138 | <exclude>**/pax/**</exclude> |
| 139 | </excludes> |
| 140 | </configuration> |
| 141 | <executions> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 142 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 143 | <execution> |
| 144 | <id>pre-unit-test</id> |
| 145 | <goals> |
| 146 | <goal>prepare-agent</goal> |
| 147 | </goals> |
| 148 | <configuration> |
| 149 | <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> |
| 150 | <propertyName>surefireArgLine</propertyName> |
| 151 | </configuration> |
| 152 | </execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 153 | |
| 154 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 155 | <execution> |
| 156 | <id>post-unit-test</id> |
| 157 | <phase>test</phase> |
| 158 | <goals> |
| 159 | <goal>report</goal> |
| 160 | </goals> |
| 161 | <configuration> |
| 162 | <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> |
| 163 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
| 164 | </configuration> |
| 165 | </execution> |
| 166 | <execution> |
| 167 | <id>pre-integration-test</id> |
| 168 | <phase>pre-integration-test</phase> |
| 169 | <goals> |
| 170 | <goal>prepare-agent</goal> |
| 171 | </goals> |
| 172 | <configuration> |
| 173 | <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> |
| 174 | <propertyName>failsafeArgLine</propertyName> |
| 175 | </configuration> |
| 176 | </execution> |
gabe.maurer | 2e23328 | 2018-04-03 11:18:38 -0500 | [diff] [blame] | 177 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 178 | <execution> |
| 179 | <id>post-integration-test</id> |
| 180 | <phase>post-integration-test</phase> |
| 181 | <goals> |
| 182 | <goal>report</goal> |
| 183 | </goals> |
| 184 | <configuration> |
| 185 | <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> |
| 186 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> |
| 187 | </configuration> |
| 188 | </execution> |
| 189 | </executions> |
| 190 | </plugin> |
| 191 | </plugins> |
| 192 | </build> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 193 | |
Instrumental | e9ae048 | 2019-08-02 14:46:27 -0500 | [diff] [blame] | 194 | <distributionManagement> |
| 195 | <repository> |
| 196 | <id>ecomp-releases</id> |
| 197 | <name>AAF Release Repository</name> |
| 198 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 199 | </repository> |
| 200 | <snapshotRepository> |
| 201 | <id>ecomp-snapshots</id> |
| 202 | <name>AAF Snapshot Repository</name> |
| 203 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 204 | </snapshotRepository> |
| 205 | <site> |
| 206 | <id>ecomp-site</id> |
| 207 | <url>dav:${nexusproxy}${sitePath}</url> |
| 208 | </site> |
| 209 | </distributionManagement> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame] | 210 | |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 211 | </project> |