waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.so</groupId> |
| 26 | <artifactId>so</artifactId> |
| 27 | <version>1.4.0-SNAPSHOT</version> |
| 28 | </parent> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 29 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 30 | <groupId>org.onap.so.monitoring</groupId> |
| 31 | <artifactId>so-monitoring</artifactId> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 32 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 33 | <packaging>pom</packaging> |
| 34 | <name>${project.artifactId}</name> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 35 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 36 | <properties> |
| 37 | <java.version>1.8</java.version> |
| 38 | <version.java.compiler>1.8</version.java.compiler> |
| 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 40 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 41 | </properties> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 42 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <groupId>org.springframework.boot</groupId> |
| 47 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 48 | </plugin> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 49 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | <configuration> |
| 54 | <source>${version.java.compiler}</source> |
| 55 | <target>${version.java.compiler}</target> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | </plugins> |
| 59 | </build> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 60 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 61 | <modules> |
| 62 | <module>so-monitoring-ui</module> |
| 63 | <module>so-monitoring-handler</module> |
| 64 | <module>so-monitoring-service</module> |
| 65 | </modules> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 66 | </project> |