Determe, Sebastien (sd378r) | e35744d | 2017-08-29 04:21:41 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 3 | Copyright (C) 2021 Nordix Foundation. |
Determe, Sebastien (sd378r) | e35744d | 2017-08-29 04:21:41 -0700 | [diff] [blame] | 4 | ================================================================================ |
| 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 |
ChrisC | 6c9759e | 2017-08-30 01:13:58 -0700 | [diff] [blame] | 8 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 9 | http://www.apache.org/licenses/LICENSE-2.0 |
ChrisC | 6c9759e | 2017-08-30 01:13:58 -0700 | [diff] [blame] | 10 | |
Determe, Sebastien (sd378r) | e35744d | 2017-08-29 04:21:41 -0700 | [diff] [blame] | 11 | 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_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 16 | ============LICENSE_END========================================================= |
| 17 | --> |
ChrisC | 5e9feb2 | 2017-06-21 02:38:57 -0700 | [diff] [blame] | 18 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 19 | <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> |
sebdet | a5243a4 | 2019-06-13 13:48:04 +0200 | [diff] [blame] | 22 | |
sebdet | 025e65f | 2020-12-10 15:10:15 +0100 | [diff] [blame] | 23 | <parent> |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 24 | <groupId>org.onap.policy.parent</groupId> |
| 25 | <artifactId>integration</artifactId> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 26 | <version>3.4.0-SNAPSHOT</version> |
sebdet | 025e65f | 2020-12-10 15:10:15 +0100 | [diff] [blame] | 27 | </parent> |
Determe, Sebastien (sd378r) | a66fe45 | 2017-08-08 06:42:49 -0700 | [diff] [blame] | 28 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 29 | <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 | |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 36 | <description> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 37 | This is the root Maven module for the policy-clamp project. |
Ted Humphrey | 01e5fde | 2020-01-27 18:57:39 -0500 | [diff] [blame] | 38 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 39 | 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 |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 50 | </description> |
ChrisC | ae04cf3 | 2018-02-05 05:21:59 -0800 | [diff] [blame] | 51 | |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 52 | <properties> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 53 | <policy.common.version>1.9.0-SNAPSHOT</policy.common.version> |
| 54 | <policy.models.version>2.5.0-SNAPSHOT</policy.models.version> |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 55 | </properties> |
ChrisC | 5e9feb2 | 2017-06-21 02:38:57 -0700 | [diff] [blame] | 56 | |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 57 | <modules> |
| 58 | <module>common</module> |
| 59 | <module>models</module> |
| 60 | <module>runtime</module> |
| 61 | <module>participant</module> |
| 62 | </modules> |
sebdet | 101193d | 2019-09-05 18:25:59 +0200 | [diff] [blame] | 63 | |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 64 | <dependencies> |
| 65 | <dependency> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame^] | 66 | <groupId>junit</groupId> |
| 67 | <artifactId>junit</artifactId> |
sebdet | 7f685aa | 2021-03-25 18:19:29 +0100 | [diff] [blame] | 68 | <scope>test</scope> |
| 69 | </dependency> |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 70 | </dependencies> |
ChrisC | 5e9feb2 | 2017-06-21 02:38:57 -0700 | [diff] [blame] | 71 | </project> |