blob: b320cca6f74273a50b40a5a70d8243dbdafd553e [file] [log] [blame]
Jessica Wagantallbf800262021-02-18 15:20:49 -05001<!--
2 ============LICENSE_START=======================================================
3 Copyright (c) 2020 Linux Foundation.
4 Modifications Copyright (C) 2021 Bell Canada.
tragait34a94b92021-03-30 12:02:27 +01005 Modification Copyright (C) 2021 Nordix Foundation
Jessica Wagantallbf800262021-02-18 15:20:49 -05006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19-->
20
Rishi Chailb220d742020-09-16 15:23:53 +010021<project xmlns="http://maven.apache.org/POM/4.0.0"
Claudio David Gasparini70c17022020-10-26 10:12:10 +010022 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 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 +010024 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.oparent</groupId>
27 <artifactId>oparent</artifactId>
Rishi.Chailf8bd3b72021-01-28 13:22:43 +000028 <version>3.2.0</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010029 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010030
Rishi Chail6f523db2020-10-21 12:04:16 +010031 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010032 <artifactId>cps-aggregator</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000033 <version>1.1.0-SNAPSHOT</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010034 <packaging>pom</packaging>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010035
Rishi Chail6f523db2020-10-21 12:04:16 +010036 <name>cps</name>
ToineSiebelinke40f4d22020-11-16 17:25:29 +000037 <description>ONAP Configuration Persistence Service</description>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010038
Rishi Chail6f523db2020-10-21 12:04:16 +010039 <organization>
40 <name>ONAP - CPS</name>
41 <url>http://www.onap.org/</url>
42 </organization>
Rishi Chailb220d742020-09-16 15:23:53 +010043
Claudio David Gasparini70c17022020-10-26 10:12:10 +010044 <properties>
45 <maven.deploy.skip>true</maven.deploy.skip>
46 <maven.install.skip>true</maven.install.skip>
47 </properties>
Rishi Chail6f523db2020-10-21 12:04:16 +010048
49 <modules>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010050 <module>cps-dependencies</module>
51 <module>cps-bom</module>
52 <module>cps-parent</module>
Bruno Sakotof549c7c2021-05-18 16:02:30 -040053 <module>cps-events</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010054 <module>cps-service</module>
55 <module>cps-rest</module>
tragait34a94b92021-03-30 12:02:27 +010056 <module>cps-ncmp-service</module>
57 <module>cps-ncmp-rest</module>
ToineSiebelinkc37678a2021-05-20 16:44:21 +010058 <module>cps-path-parser</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010059 <module>cps-ri</module>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010060 <module>checkstyle</module>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +010061 <module>spotbugs</module>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010062 <module>cps-application</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010063 </modules>
Jessica Wagantallbf800262021-02-18 15:20:49 -050064
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.codehaus.mojo</groupId>
69 <artifactId>versions-maven-plugin</artifactId>
70 <version>2.8.1</version>
71 <configuration>
72 <processAllModules>true</processAllModules>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77
Rishi Chailf9255872020-09-28 12:30:58 +010078</project>