blob: 5d4c9599f21162a63fe81a02c8ba315c17f29b3d [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
Jessica Wagantallbf800262021-02-18 15:20:49 -05002<!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2020 Linux Foundation.
lukegleeson15b93e72021-07-07 15:25:30 +01005 Modifications Copyright (C) 2020-2021 Nordix Foundation
6 Modifications Copyright (C) 2020-2021 Pantheon.tech
Jessica Wagantallbf800262021-02-18 15:20:49 -05007 Modifications Copyright (C) 2021 Bell Canada.
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21-->
22
Rishi Chailb220d742020-09-16 15:23:53 +010023<project xmlns="http://maven.apache.org/POM/4.0.0"
Claudio David Gasparini70c17022020-10-26 10:12:10 +010024 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
Rishi Chail6f523db2020-10-21 12:04:16 +010026 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.oparent</groupId>
29 <artifactId>oparent</artifactId>
Rishi.Chailf8bd3b72021-01-28 13:22:43 +000030 <version>3.2.0</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010031 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010032
Rishi Chail6f523db2020-10-21 12:04:16 +010033 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010034 <artifactId>cps-aggregator</artifactId>
puthuparambil.adityaa2a146c2022-04-28 14:32:22 +010035 <version>3.0.2-SNAPSHOT</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010036 <packaging>pom</packaging>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010037
Rishi Chail6f523db2020-10-21 12:04:16 +010038 <name>cps</name>
ToineSiebelinke40f4d22020-11-16 17:25:29 +000039 <description>ONAP Configuration Persistence Service</description>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010040
Rishi Chail6f523db2020-10-21 12:04:16 +010041 <organization>
42 <name>ONAP - CPS</name>
43 <url>http://www.onap.org/</url>
44 </organization>
Rishi Chailb220d742020-09-16 15:23:53 +010045
Claudio David Gasparini70c17022020-10-26 10:12:10 +010046 <properties>
47 <maven.deploy.skip>true</maven.deploy.skip>
48 <maven.install.skip>true</maven.install.skip>
49 </properties>
Rishi Chail6f523db2020-10-21 12:04:16 +010050
51 <modules>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010052 <module>cps-dependencies</module>
53 <module>cps-bom</module>
54 <module>cps-parent</module>
Bruno Sakotof549c7c2021-05-18 16:02:30 -040055 <module>cps-events</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010056 <module>cps-service</module>
57 <module>cps-rest</module>
tragait34a94b92021-03-30 12:02:27 +010058 <module>cps-ncmp-service</module>
59 <module>cps-ncmp-rest</module>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010060 <module>cps-path-parser</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010061 <module>cps-ri</module>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010062 <module>checkstyle</module>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +010063 <module>spotbugs</module>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010064 <module>cps-application</module>
ToineSiebelink73001f62021-09-17 15:07:38 +010065 <module>jacoco-report</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010066 </modules>
Jessica Wagantallbf800262021-02-18 15:20:49 -050067
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.codehaus.mojo</groupId>
72 <artifactId>versions-maven-plugin</artifactId>
73 <version>2.8.1</version>
74 <configuration>
75 <processAllModules>true</processAllModules>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
Rishi Chailf9255872020-09-28 12:30:58 +010081</project>