blob: 243073554e9e23cfde577cda69bc9e8f105f616b [file] [log] [blame]
waqas.ikram3e9ee092018-08-23 13:26:09 +01001<!--
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)c0247ec2019-04-11 10:34:45 -040022 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.ikram3e9ee092018-08-23 13:26:09 +010029
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040030 <groupId>org.onap.so.monitoring</groupId>
31 <artifactId>so-monitoring</artifactId>
waqas.ikram3e9ee092018-08-23 13:26:09 +010032
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040033 <packaging>pom</packaging>
34 <name>${project.artifactId}</name>
waqas.ikram3e9ee092018-08-23 13:26:09 +010035
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040036 <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.ikram3e9ee092018-08-23 13:26:09 +010042
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-maven-plugin</artifactId>
48 </plugin>
waqas.ikram3e9ee092018-08-23 13:26:09 +010049
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040050 <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.ikram3e9ee092018-08-23 13:26:09 +010060
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040061 <modules>
62 <module>so-monitoring-ui</module>
63 <module>so-monitoring-handler</module>
64 <module>so-monitoring-service</module>
65 </modules>
Rob Daugherty325d4e22018-10-19 15:13:38 -040066</project>