Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 4 | Copyright (C) 2021-2024 Nordix Foundation. |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
liamfallon | 7d04c23 | 2021-06-29 17:13:09 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.clamp.participant</groupId> |
| 29 | <artifactId>policy-clamp-participant</artifactId> |
saul.gill | 0156559 | 2024-05-20 11:09:09 +0100 | [diff] [blame^] | 30 | <version>8.0.0-SNAPSHOT</version> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>policy-clamp-participant-impl</artifactId> |
| 34 | <name>${project.artifactId}</name> |
| 35 | <packaging>pom</packaging> |
| 36 | |
| 37 | <modules> |
FrancescoFioraEst | 5006eef | 2023-06-08 12:19:02 +0100 | [diff] [blame] | 38 | <module>participant-impl-simulator</module> |
rameshiyer27 | fda6280 | 2022-07-28 11:58:19 +0100 | [diff] [blame] | 39 | <module>participant-impl-acelement</module> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 40 | <module>participant-impl-policy</module> |
| 41 | <module>participant-impl-cds</module> |
| 42 | <module>participant-impl-kubernetes</module> |
rameshiyer27 | 23e25e8 | 2021-07-20 07:57:41 +0100 | [diff] [blame] | 43 | <module>participant-impl-http</module> |
aravind.est | bf6cc68 | 2022-11-21 15:26:58 +0000 | [diff] [blame] | 44 | <module>participant-impl-a1pms</module> |
aravind.est | df28b0a | 2023-02-14 09:29:14 +0000 | [diff] [blame] | 45 | <module>participant-impl-kserve</module> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 46 | </modules> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.onap.policy.clamp.participant</groupId> |
| 51 | <artifactId>policy-clamp-participant-intermediary</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>org.springframework.boot</groupId> |
| 56 | <artifactId>spring-boot-starter-webflux</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.springframework.boot</groupId> |
| 60 | <artifactId>spring-boot-starter-web</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.springframework.boot</groupId> |
| 64 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.springframework.boot</groupId> |
| 68 | <artifactId>spring-boot-starter-aop</artifactId> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>io.micrometer</groupId> |
| 72 | <artifactId>micrometer-core</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>io.micrometer</groupId> |
| 76 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.springframework.boot</groupId> |
| 80 | <artifactId>spring-boot-starter-security</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-starter-test</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.junit.jupiter</groupId> |
| 89 | <artifactId>junit-jupiter-engine</artifactId> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 92 | </dependencies> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 93 | </project> |