blob: df379153d824ba0fbc872f9ac48c5fd22d95e2c3 [file] [log] [blame]
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -07001<!--
2 ============LICENSE_START=======================================================
saul.gille4a667b2024-01-16 12:43:09 +00003 Copyright (C) 2021-2024 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 -->
liamfallon0e405f32023-02-17 19:15:16 +000018<project
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
adheli.tavares4407ea62023-08-11 15:10:44 +010021 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010022 <modelVersion>4.0.0</modelVersion>
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>
rameshiyer272821dc42024-11-19 08:29:11 +000026 <version>5.0.2-SNAPSHOT</version>
liamfallonc00a0dd2023-10-18 09:08:03 +010027 <relativePath />
sebdet025e65f2020-12-10 15:10:15 +010028 </parent>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010029 <groupId>org.onap.policy.clamp</groupId>
30 <artifactId>policy-clamp</artifactId>
rameshiyer272821dc42024-11-19 08:29:11 +000031 <version>8.0.2-SNAPSHOT</version>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010032 <name>${project.artifactId}</name>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010033 <packaging>pom</packaging>
sebdet078c34d2021-01-20 23:02:17 +010034 <description>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010035 This is the root Maven module for the policy-clamp project.
Ted Humphrey01e5fde2020-01-27 18:57:39 -050036
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010037 It contains the following modules:
liamfallon66684502021-10-13 09:19:38 +010038 - policy-clamp-common: Common code for all Policy/CLAMP modules
rameshiyer2714d6bfe2024-01-22 18:54:28 +000039 - policy-clamp-models: POJOs and other model code for REST and Kafka messages and for persistence
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010040 - policy-clamp-runtime: The runtime server for CLAMP
liamfallon43098042022-01-25 19:55:43 +000041 - policy-clamp-runtime-acm: The runtime server for Automation Composition Management
42 - policy-clamp-participant: Modules for CLAMP automation composition participants
rameshiyer2714d6bfe2024-01-22 18:54:28 +000043 o policy-clamp-participant-intermediary: A common JAR that handles participant state and Kafka handling
adheli.tavares4407ea62023-08-11 15:10:44 +010044 o policy-clamp-participant-impl-cds: A standard participant for interworking with CDS
45 o policy-clamp-participant-impl-kubernetes: A standard participant for Kubernetes microservices
46 o policy-clamp-participant-impl-policy: A standard participant for handling polcies for Policy Framework
47 o policy-clamp-acm-element-impl: ACM element implementation for integration testing
48 o policy-clamp-participant-impl-http: A standard participant for http configurations
49 o policy-clamp-participant-impl-a1pms: A standard participant for accessing A1-Policy Management Service
50 o policy-clamp-participant-impl-kserve: A standard participant for Kserve
sebdet078c34d2021-01-20 23:02:17 +010051 </description>
sebdet078c34d2021-01-20 23:02:17 +010052 <properties>
rameshiyer272821dc42024-11-19 08:29:11 +000053 <policy.common.version>3.0.2-SNAPSHOT</policy.common.version>
54 <policy.models.version>4.0.2-SNAPSHOT</policy.models.version>
adheli.tavares0af6a682024-11-13 11:31:33 +000055 <version.netty>4.1.112.Final</version.netty>
sebdet078c34d2021-01-20 23:02:17 +010056 </properties>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010057 <modules>
58 <module>common</module>
adheli.tavares1ae86972022-02-25 15:06:49 +000059 <module>examples</module>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010060 <module>models</module>
rameshiyer27049192c2021-07-15 09:36:26 +010061 <module>packages</module>
liamfallon43098042022-01-25 19:55:43 +000062 <module>runtime-acm</module>
Sirisha_Manchikantif83411a2021-05-07 15:17:52 +010063 <module>participant</module>
64 </modules>
ChrisC5e9feb22017-06-21 02:38:57 -070065</project>