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> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 61 | <module>runtime-controlloop</module> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 62 | <module>participant</module> |
| 63 | </modules> |
sebdet | 101193d | 2019-09-05 18:25:59 +0200 | [diff] [blame] | 64 | |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 65 | <dependencies> |
| 66 | <dependency> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 67 | <groupId>junit</groupId> |
| 68 | <artifactId>junit</artifactId> |
sebdet | 7f685aa | 2021-03-25 18:19:29 +0100 | [diff] [blame] | 69 | <scope>test</scope> |
| 70 | </dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 71 | <dependency> |
waynedunican | eaba0c9 | 2021-06-18 15:06:29 +0100 | [diff] [blame^] | 72 | <groupId>org.junit.jupiter</groupId> |
| 73 | <artifactId>junit-jupiter-engine</artifactId> |
| 74 | <version>5.7.1</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 78 | <groupId>commons-cli</groupId> |
| 79 | <artifactId>commons-cli</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.onap.policy.common</groupId> |
| 83 | <artifactId>common-parameters</artifactId> |
| 84 | <version>${policy.common.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.onap.policy.common</groupId> |
| 88 | <artifactId>utils</artifactId> |
| 89 | <version>${policy.common.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.onap.policy.common</groupId> |
| 93 | <artifactId>policy-endpoints</artifactId> |
| 94 | <version>${policy.common.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.onap.policy.common</groupId> |
| 98 | <artifactId>gson</artifactId> |
| 99 | <version>${policy.common.version}</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.onap.policy.models</groupId> |
| 103 | <artifactId>policy-models-provider</artifactId> |
| 104 | <version>${policy.models.version}</version> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.apache.commons</groupId> |
| 108 | <artifactId>commons-lang3</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.onap.policy.common</groupId> |
| 112 | <artifactId>utils-test</artifactId> |
| 113 | <version>${policy.common.version}</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.assertj</groupId> |
| 118 | <artifactId>assertj-core</artifactId> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.mockito</groupId> |
| 123 | <artifactId>mockito-core</artifactId> |
| 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.powermock</groupId> |
| 128 | <artifactId>powermock-api-mockito2</artifactId> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.powermock</groupId> |
| 133 | <artifactId>powermock-module-junit4</artifactId> |
| 134 | <scope>test</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.awaitility</groupId> |
| 138 | <artifactId>awaitility</artifactId> |
| 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>com.h2database</groupId> |
| 143 | <artifactId>h2</artifactId> |
| 144 | <scope>test</scope> |
| 145 | </dependency> |
Sirisha_Manchikanti | 18526e9 | 2021-06-01 16:48:25 +0100 | [diff] [blame] | 146 | <dependency> |
| 147 | <groupId>ch.qos.logback</groupId> |
| 148 | <artifactId>logback-core</artifactId> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>ch.qos.logback</groupId> |
| 152 | <artifactId>logback-classic</artifactId> |
| 153 | </dependency> |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 154 | </dependencies> |
ChrisC | 5e9feb2 | 2017-06-21 02:38:57 -0700 | [diff] [blame] | 155 | </project> |