blob: 9fd9bba1cbb52346d41c2b7bb5d0e1ce553738f1 [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.
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18-->
19
Rishi Chailb220d742020-09-16 15:23:53 +010020<project xmlns="http://maven.apache.org/POM/4.0.0"
Claudio David Gasparini70c17022020-10-26 10:12:10 +010021 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 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 +010023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.oparent</groupId>
26 <artifactId>oparent</artifactId>
Rishi.Chailf8bd3b72021-01-28 13:22:43 +000027 <version>3.2.0</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010028 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010029
Rishi Chail6f523db2020-10-21 12:04:16 +010030 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010031 <artifactId>cps-aggregator</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000032 <version>1.1.0-SNAPSHOT</version>
Rishi Chail6f523db2020-10-21 12:04:16 +010033 <packaging>pom</packaging>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010034
Rishi Chail6f523db2020-10-21 12:04:16 +010035 <name>cps</name>
ToineSiebelinke40f4d22020-11-16 17:25:29 +000036 <description>ONAP Configuration Persistence Service</description>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010037
Rishi Chail6f523db2020-10-21 12:04:16 +010038 <organization>
39 <name>ONAP - CPS</name>
40 <url>http://www.onap.org/</url>
41 </organization>
Rishi Chailb220d742020-09-16 15:23:53 +010042
Claudio David Gasparini70c17022020-10-26 10:12:10 +010043 <properties>
44 <maven.deploy.skip>true</maven.deploy.skip>
45 <maven.install.skip>true</maven.install.skip>
46 </properties>
Rishi Chail6f523db2020-10-21 12:04:16 +010047
48 <modules>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010049 <module>cps-dependencies</module>
50 <module>cps-bom</module>
51 <module>cps-parent</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010052 <module>cps-service</module>
53 <module>cps-rest</module>
Claudio D. Gasparini63647032021-02-15 10:38:21 +010054 <module>cps-nf-proxy-service</module>
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020055 <module>cps-nf-proxy-rest</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010056 <module>cps-ri</module>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010057 <module>checkstyle</module>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +010058 <module>spotbugs</module>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010059 <module>cps-application</module>
Rishi Chail6f523db2020-10-21 12:04:16 +010060 </modules>
Jessica Wagantallbf800262021-02-18 15:20:49 -050061
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>versions-maven-plugin</artifactId>
67 <version>2.8.1</version>
68 <configuration>
69 <processAllModules>true</processAllModules>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
Rishi Chailf9255872020-09-28 12:30:58 +010075</project>