Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ================================================================================ |
| 4 | Copyright (c) 2020 Nokia. All rights reserved. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 7 | use this file except in compliance with the License. You may obtain a copy |
| 8 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 9 | by applicable law or agreed to in writing, software distributed under the |
| 10 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 11 | OF ANY KIND, either express or implied. See the License for the specific |
| 12 | language governing permissions and limitations under the License. |
| 13 | ============LICENSE_END========================================================= |
| 14 | --> |
| 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | |
| 19 | <parent> |
| 20 | <groupId>org.onap.oparent</groupId> |
| 21 | <artifactId>oparent</artifactId> |
| 22 | <version>3.0.0</version> |
| 23 | </parent> |
Bartosz Gardziejewski | beecacb | 2020-02-13 07:31:47 +0100 | [diff] [blame] | 24 | <groupId>org.onap.aaf.certservice</groupId> |
Bartosz Gardziejewski | 5d71eb7 | 2020-02-13 08:17:55 +0100 | [diff] [blame] | 25 | <artifactId>aaf-certservice</artifactId> |
Bartosz Gardziejewski | dd700fc | 2020-02-13 08:44:03 +0100 | [diff] [blame] | 26 | <version>1.0.0-SNAPSHOT</version> |
Bartosz Gardziejewski | 5d71eb7 | 2020-02-13 08:17:55 +0100 | [diff] [blame] | 27 | <name>aaf-certservice</name> |
| 28 | <description>AAF Certification Service</description> |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 29 | <packaging>pom</packaging> |
Tomasz Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 30 | |
| 31 | <properties> |
| 32 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 33 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 34 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 35 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> |
| 36 | <sitePath>/content/sites/site/org/onap/aaf/cert-service/${project.artifactId}/${project.version}</sitePath> |
| 37 | </properties> |
| 38 | |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 39 | <modules> |
| 40 | <module>certService</module> |
| 41 | </modules> |
Tomasz Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 42 | |
| 43 | <distributionManagement> |
| 44 | <repository> |
| 45 | <id>ecomp-releases</id> |
| 46 | <name>AAF Release Repository</name> |
| 47 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 48 | </repository> |
| 49 | <snapshotRepository> |
| 50 | <id>ecomp-snapshots</id> |
| 51 | <name>AAF Snapshot Repository</name> |
| 52 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 53 | </snapshotRepository> |
| 54 | <site> |
| 55 | <id>ecomp-site</id> |
| 56 | <url>dav:${nexusproxy}${sitePath}</url> |
| 57 | </site> |
| 58 | </distributionManagement> |
| 59 | |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 60 | </project> |