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> |
rameshiyer27 | 049192c | 2021-07-15 09:36:26 +0100 | [diff] [blame^] | 60 | <module>packages</module> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 61 | <module>runtime</module> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 62 | <module>runtime-controlloop</module> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 63 | <module>participant</module> |
| 64 | </modules> |
sebdet | 101193d | 2019-09-05 18:25:59 +0200 | [diff] [blame] | 65 | |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 66 | <dependencies> |
| 67 | <dependency> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 68 | <groupId>junit</groupId> |
| 69 | <artifactId>junit</artifactId> |
sebdet | 7f685aa | 2021-03-25 18:19:29 +0100 | [diff] [blame] | 70 | <scope>test</scope> |
| 71 | </dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 72 | <dependency> |
waynedunican | eaba0c9 | 2021-06-18 15:06:29 +0100 | [diff] [blame] | 73 | <groupId>org.junit.jupiter</groupId> |
| 74 | <artifactId>junit-jupiter-engine</artifactId> |
| 75 | <version>5.7.1</version> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 79 | <groupId>commons-cli</groupId> |
| 80 | <artifactId>commons-cli</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onap.policy.common</groupId> |
| 84 | <artifactId>common-parameters</artifactId> |
| 85 | <version>${policy.common.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onap.policy.common</groupId> |
| 89 | <artifactId>utils</artifactId> |
| 90 | <version>${policy.common.version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.onap.policy.common</groupId> |
| 94 | <artifactId>policy-endpoints</artifactId> |
| 95 | <version>${policy.common.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.onap.policy.common</groupId> |
| 99 | <artifactId>gson</artifactId> |
| 100 | <version>${policy.common.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onap.policy.models</groupId> |
| 104 | <artifactId>policy-models-provider</artifactId> |
| 105 | <version>${policy.models.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.apache.commons</groupId> |
| 109 | <artifactId>commons-lang3</artifactId> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.onap.policy.common</groupId> |
| 113 | <artifactId>utils-test</artifactId> |
| 114 | <version>${policy.common.version}</version> |
| 115 | <scope>test</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
liamfallon | 7d04c23 | 2021-06-29 17:13:09 +0100 | [diff] [blame] | 118 | <groupId>org.springframework.boot</groupId> |
| 119 | <artifactId>spring-boot-starter-web</artifactId> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.springframework.boot</groupId> |
| 123 | <artifactId>spring-boot-starter-validation</artifactId> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.springframework.boot</groupId> |
| 127 | <artifactId>spring-boot-starter-security</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.springframework.boot</groupId> |
| 131 | <artifactId>spring-boot-starter-test</artifactId> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
liamfallon | 137e045 | 2021-07-06 09:53:17 +0100 | [diff] [blame] | 135 | <groupId>io.swagger</groupId> |
| 136 | <artifactId>swagger-models</artifactId> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>com.fasterxml.jackson.core</groupId> |
| 140 | <artifactId>jackson-annotations</artifactId> |
| 141 | <version>${version.jackson}</version> |
| 142 | </dependency> |
| 143 | <dependency> |
liamfallon | 7d04c23 | 2021-06-29 17:13:09 +0100 | [diff] [blame] | 144 | <groupId>io.springfox</groupId> |
| 145 | <artifactId>springfox-boot-starter</artifactId> |
| 146 | <version>${version.springfox}</version> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.immutables</groupId> |
| 150 | <artifactId>gson</artifactId> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.mock-server</groupId> |
| 154 | <artifactId>mockserver-netty</artifactId> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.mock-server</groupId> |
| 159 | <artifactId>mockserver-client-java</artifactId> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 163 | <groupId>org.assertj</groupId> |
| 164 | <artifactId>assertj-core</artifactId> |
| 165 | <scope>test</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.mockito</groupId> |
| 169 | <artifactId>mockito-core</artifactId> |
| 170 | <scope>test</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>org.powermock</groupId> |
| 174 | <artifactId>powermock-api-mockito2</artifactId> |
| 175 | <scope>test</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.powermock</groupId> |
| 179 | <artifactId>powermock-module-junit4</artifactId> |
| 180 | <scope>test</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.awaitility</groupId> |
| 184 | <artifactId>awaitility</artifactId> |
| 185 | <scope>test</scope> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>com.h2database</groupId> |
| 189 | <artifactId>h2</artifactId> |
| 190 | <scope>test</scope> |
| 191 | </dependency> |
Sirisha_Manchikanti | 18526e9 | 2021-06-01 16:48:25 +0100 | [diff] [blame] | 192 | <dependency> |
| 193 | <groupId>ch.qos.logback</groupId> |
| 194 | <artifactId>logback-core</artifactId> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>ch.qos.logback</groupId> |
| 198 | <artifactId>logback-classic</artifactId> |
| 199 | </dependency> |
rameshiyer27 | 616b076 | 2021-07-01 07:50:45 +0100 | [diff] [blame] | 200 | <dependency> |
| 201 | <groupId>commons-fileupload</groupId> |
| 202 | <artifactId>commons-fileupload</artifactId> |
| 203 | </dependency> |
sebdet | 078c34d | 2021-01-20 23:02:17 +0100 | [diff] [blame] | 204 | </dependencies> |
ChrisC | 5e9feb2 | 2017-06-21 02:38:57 -0700 | [diff] [blame] | 205 | </project> |