liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
adheli.tavares | 7f63094 | 2022-03-09 10:39:29 +0000 | [diff] [blame] | 4 | Copyright (C) 2021-2022 Nordix Foundation. |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +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 | |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 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"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.clamp</groupId> |
| 29 | <artifactId>policy-clamp</artifactId> |
liamfallon | 25b2378 | 2022-04-12 21:35:15 +0100 | [diff] [blame] | 30 | <version>6.2.3-SNAPSHOT</version> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | |
liamfallon | 4309804 | 2022-01-25 19:55:43 +0000 | [diff] [blame] | 33 | <artifactId>policy-clamp-runtime-acm</artifactId> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 34 | <name>${project.artifactId}</name> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.clamp</groupId> |
| 39 | <artifactId>policy-clamp-common</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.policy.clamp</groupId> |
| 44 | <artifactId>policy-clamp-models</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 47 | <dependency> |
adheli.tavares | 7f63094 | 2022-03-09 10:39:29 +0000 | [diff] [blame] | 48 | <groupId>org.onap.policy.clamp</groupId> |
| 49 | <artifactId>policy-clamp-examples</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
FrancescoFioraEst | c3fb95f | 2022-04-27 10:32:51 +0100 | [diff] [blame^] | 53 | <groupId>com.fasterxml.jackson.module</groupId> |
| 54 | <artifactId>jackson-module-jsonSchema</artifactId> |
| 55 | <exclusions> |
| 56 | <exclusion> |
| 57 | <groupId>javax.validation</groupId> |
| 58 | <artifactId>validation-api</artifactId> |
| 59 | </exclusion> |
| 60 | </exclusions> |
| 61 | </dependency> |
| 62 | <dependency> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 63 | <groupId>org.springframework.boot</groupId> |
| 64 | <artifactId>spring-boot-starter-web</artifactId> |
| 65 | <exclusions> |
| 66 | <exclusion> |
| 67 | <groupId>org.springframework.boot</groupId> |
| 68 | <artifactId>spring-boot-starter-json</artifactId> |
| 69 | </exclusion> |
| 70 | </exclusions> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.springframework.boot</groupId> |
FrancescoFioraEst | d5c6458 | 2021-07-20 15:49:57 +0100 | [diff] [blame] | 74 | <artifactId>spring-boot-starter-aop</artifactId> |
| 75 | <version>${version.springboot}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.springframework.boot</groupId> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 79 | <artifactId>spring-boot-starter-security</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.springframework.boot</groupId> |
| 83 | <artifactId>spring-boot-starter-validation</artifactId> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>io.springfox</groupId> |
| 87 | <artifactId>springfox-boot-starter</artifactId> |
| 88 | <version>${version.springfox}</version> |
| 89 | </dependency> |
| 90 | <dependency> |
FrancescoFioraEst | 1353327 | 2021-08-24 12:55:16 +0100 | [diff] [blame] | 91 | <groupId>org.springframework.boot</groupId> |
| 92 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 93 | <version>${version.springboot}</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>io.micrometer</groupId> |
| 97 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 98 | <version>${version.io.micrometer}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 101 | <groupId>io.springfox</groupId> |
| 102 | <artifactId>springfox-swagger-ui</artifactId> |
| 103 | <scope>runtime</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.springframework.boot</groupId> |
| 107 | <artifactId>spring-boot-starter-test</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
Sirisha_Manchikanti | 8584f21 | 2022-04-12 17:41:14 +0100 | [diff] [blame] | 110 | <dependency> |
| 111 | <groupId>com.google.code.gson</groupId> |
| 112 | <artifactId>gson</artifactId> |
Sirisha_Manchikanti | 8584f21 | 2022-04-12 17:41:14 +0100 | [diff] [blame] | 113 | </dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 114 | </dependencies> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 115 | |
| 116 | <build> |
| 117 | <plugins> |
| 118 | <plugin> |
adheli.tavares | 7f63094 | 2022-03-09 10:39:29 +0000 | [diff] [blame] | 119 | <groupId>org.apache.maven.plugins</groupId> |
| 120 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 121 | <version>1.7.0</version> |
| 122 | <configuration> |
| 123 | <resourceBundles> |
| 124 | <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle> |
| 125 | </resourceBundles> |
| 126 | </configuration> |
| 127 | <executions> |
| 128 | <execution> |
| 129 | <goals> |
| 130 | <goal>process</goal> |
| 131 | </goals> |
| 132 | </execution> |
| 133 | </executions> |
| 134 | </plugin> |
| 135 | <plugin> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 136 | <groupId>org.springframework.boot</groupId> |
| 137 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 138 | <executions> |
| 139 | <execution> |
| 140 | <goals> |
| 141 | <goal>repackage</goal> |
| 142 | </goals> |
| 143 | <phase>package</phase> |
| 144 | </execution> |
| 145 | </executions> |
| 146 | </plugin> |
| 147 | </plugins> |
| 148 | </build> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 149 | </project> |