blob: 6f86ff513afb2ae723a8855c835885b8c220b21f [file] [log] [blame]
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -07001<!--
2 ============LICENSE_START=======================================================
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +01003 Copyright (C) 2021 Nordix Foundation.
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -07004 ================================================================================
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
ChrisC6c9759e2017-08-30 01:13:58 -07008
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +01009 http://www.apache.org/licenses/LICENSE-2.0
ChrisC6c9759e2017-08-30 01:13:58 -070010
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -070011 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.
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010016 ============LICENSE_END=========================================================
17 -->
ChrisC5e9feb22017-06-21 02:38:57 -070018
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
sebdeta5243a42019-06-13 13:48:04 +020022
sebdet025e65f2020-12-10 15:10:15 +010023 <parent>
sebdet078c34d2021-01-20 23:02:17 +010024 <groupId>org.onap.policy.parent</groupId>
25 <artifactId>integration</artifactId>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010026 <version>3.4.0-SNAPSHOT</version>
sebdet025e65f2020-12-10 15:10:15 +010027 </parent>
Determe, Sebastien (sd378r)a66fe452017-08-08 06:42:49 -070028
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010029 <groupId>org.onap.policy.clamp</groupId>
30 <artifactId>policy-clamp</artifactId>
31 <version>6.1.2-SNAPSHOT</version>
32 <name>${project.artifactId}</name>
33
34 <packaging>pom</packaging>
35
sebdet078c34d2021-01-20 23:02:17 +010036 <description>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010037 This is the root Maven module for the policy-clamp project.
Ted Humphrey01e5fde2020-01-27 18:57:39 -050038
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010039 It contains the following modules:
40 - policy-clamp-common: Common code for all CLAMP modules
41 - policy-clamp-models: POJOs and other model code for REST and DMaaP messages and for persistence
42 - policy-clamp-runtime: The runtime server for CLAMP
43 - policy-clamp-participant: Modules for CLAMP control loop participants
44 o policy-clamp-participant-intermediary: A common JAR that handles participant state and DMaaP handling
45 o policy-clamp-participant-impl-cds: A standard participant for interworking with CDS
46 o policy-clamp-participant-impl-dcae: A standard participant for interworking with DCAE
47 o policy-clamp-participant-impl-kubernetes: A standard participant for Kubernetes microservices
48 o policy-clamp-participant-impl-policy: A standard participant for handling polcies for Policy Framework
49 o policy-clamp-participant-impl-simulator: A participant simulator for integration testing
sebdet078c34d2021-01-20 23:02:17 +010050 </description>
ChrisCae04cf32018-02-05 05:21:59 -080051
sebdet078c34d2021-01-20 23:02:17 +010052 <properties>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010053 <policy.common.version>1.9.0-SNAPSHOT</policy.common.version>
54 <policy.models.version>2.5.0-SNAPSHOT</policy.models.version>
sebdet078c34d2021-01-20 23:02:17 +010055 </properties>
ChrisC5e9feb22017-06-21 02:38:57 -070056
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010057 <modules>
58 <module>common</module>
59 <module>models</module>
60 <module>runtime</module>
61 <module>participant</module>
62 </modules>
sebdet101193d2019-09-05 18:25:59 +020063
sebdet078c34d2021-01-20 23:02:17 +010064 <dependencies>
65 <dependency>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010066 <groupId>junit</groupId>
67 <artifactId>junit</artifactId>
sebdet7f685aa2021-03-25 18:19:29 +010068 <scope>test</scope>
69 </dependency>
sebdet078c34d2021-01-20 23:02:17 +010070 </dependencies>
ChrisC5e9feb22017-06-21 02:38:57 -070071</project>