blob: e8fca431569bcc3b607439fd0fcd00cb93ce944e [file] [log] [blame]
Pawel486429d2020-02-10 10:36:16 +01001<?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 Gardziejewskibeecacb2020-02-13 07:31:47 +010024 <groupId>org.onap.aaf.certservice</groupId>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010025 <artifactId>aaf-certservice</artifactId>
Bartosz Gardziejewskidd700fc2020-02-13 08:44:03 +010026 <version>1.0.0-SNAPSHOT</version>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010027 <name>aaf-certservice</name>
28 <description>AAF Certification Service</description>
Pawel486429d2020-02-10 10:36:16 +010029 <packaging>pom</packaging>
Tomasz Golabek3b531c02020-02-12 08:56:23 +010030
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
Pawel486429d2020-02-10 10:36:16 +010039 <modules>
40 <module>certService</module>
41 </modules>
Tomasz Golabek3b531c02020-02-12 08:56:23 +010042
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
Pawel486429d2020-02-10 10:36:16 +010060</project>