diff options
author | Filip Krzywka <filip.krzywka@nokia.com> | 2019-05-21 10:28:31 +0200 |
---|---|---|
committer | Filip Krzywka <filip.krzywka@nokia.com> | 2019-05-21 10:29:27 +0200 |
commit | c12ea59982286a68aeb9ebc50ed0acd0b0a1140d (patch) | |
tree | 9e44c5011667ca60eb21d82372ddc557c994f07f /standardization/moher-api/pom.xml | |
parent | 9c9f9e2663d0a1adbb00553a4c32f9fb9f0befd2 (diff) |
Create structure for MoHeR API modules
Change-Id: Ib04d9c7d38e8da1024b8f1c7b8935a038d080435
Issue-ID: DCAEGEN2-1514
Signed-off-by: Filip Krzywka <filip.krzywka@nokia.com>
Diffstat (limited to 'standardization/moher-api/pom.xml')
-rw-r--r-- | standardization/moher-api/pom.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/standardization/moher-api/pom.xml b/standardization/moher-api/pom.xml new file mode 100644 index 00000000..b4276d7e --- /dev/null +++ b/standardization/moher-api/pom.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ ============LICENSE_START======================================================= + ~ DCAEGEN2-SERVICES-SDK + ~ ================================================================================ + ~ Copyright (C) 2019 Nokia + ~ ================================================================================ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + ~ ============LICENSE_END========================================================= + --> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <artifactId>dcaegen2-services-sdk-standardization</artifactId> + <groupId>org.onap.dcaegen2.services.sdk</groupId> + <version>1.2.0-SNAPSHOT</version> + </parent> + + <name>Monitoring and Healthcheck</name> + <description>Monitoring and Healthcheck REST API standardization</description> + <artifactId>dcaegen2-sdk-moher-api</artifactId> + <packaging>pom</packaging> + + <modules> + <module>metrics</module> + <module>healthstate</module> + <module>server-adapters</module> + </modules> +</project>
\ No newline at end of file |