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 | 9d5afb3 | 2022-03-11 18:03:17 +0000 | [diff] [blame^] | 30 | <version>6.2.2-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> |
saul.gill | ccf9b0d | 2021-07-09 12:10:46 +0100 | [diff] [blame] | 53 | <groupId>com.fasterxml.jackson.module</groupId> |
| 54 | <artifactId>jackson-module-jsonSchema</artifactId> |
| 55 | <version>${version.jackson}</version> |
| 56 | <exclusions> |
| 57 | <exclusion> |
| 58 | <groupId>javax.validation</groupId> |
| 59 | <artifactId>validation-api</artifactId> |
| 60 | </exclusion> |
| 61 | </exclusions> |
| 62 | </dependency> |
| 63 | <dependency> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 64 | <groupId>org.springframework.boot</groupId> |
| 65 | <artifactId>spring-boot-starter-web</artifactId> |
| 66 | <exclusions> |
| 67 | <exclusion> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-starter-json</artifactId> |
| 70 | </exclusion> |
| 71 | </exclusions> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
FrancescoFioraEst | d5c6458 | 2021-07-20 15:49:57 +0100 | [diff] [blame] | 75 | <artifactId>spring-boot-starter-aop</artifactId> |
| 76 | <version>${version.springboot}</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.springframework.boot</groupId> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 80 | <artifactId>spring-boot-starter-security</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-starter-validation</artifactId> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>io.springfox</groupId> |
| 88 | <artifactId>springfox-boot-starter</artifactId> |
| 89 | <version>${version.springfox}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
FrancescoFioraEst | 1353327 | 2021-08-24 12:55:16 +0100 | [diff] [blame] | 92 | <groupId>org.springframework.boot</groupId> |
| 93 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 94 | <version>${version.springboot}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>io.micrometer</groupId> |
| 98 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 99 | <version>${version.io.micrometer}</version> |
| 100 | </dependency> |
| 101 | <dependency> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 102 | <groupId>io.springfox</groupId> |
| 103 | <artifactId>springfox-swagger-ui</artifactId> |
| 104 | <scope>runtime</scope> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.springframework.boot</groupId> |
| 108 | <artifactId>spring-boot-starter-test</artifactId> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 111 | </dependencies> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 112 | |
| 113 | <build> |
| 114 | <plugins> |
| 115 | <plugin> |
adheli.tavares | 7f63094 | 2022-03-09 10:39:29 +0000 | [diff] [blame] | 116 | <groupId>org.apache.maven.plugins</groupId> |
| 117 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 118 | <version>1.7.0</version> |
| 119 | <configuration> |
| 120 | <resourceBundles> |
| 121 | <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle> |
| 122 | </resourceBundles> |
| 123 | </configuration> |
| 124 | <executions> |
| 125 | <execution> |
| 126 | <goals> |
| 127 | <goal>process</goal> |
| 128 | </goals> |
| 129 | </execution> |
| 130 | </executions> |
| 131 | </plugin> |
| 132 | <plugin> |
FrancescoFioraEst | d5fb4e0 | 2021-07-05 10:36:42 +0100 | [diff] [blame] | 133 | <groupId>org.springframework.boot</groupId> |
| 134 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 135 | <executions> |
| 136 | <execution> |
| 137 | <goals> |
| 138 | <goal>repackage</goal> |
| 139 | </goals> |
| 140 | <phase>package</phase> |
| 141 | </execution> |
| 142 | </executions> |
| 143 | </plugin> |
| 144 | </plugins> |
| 145 | </build> |
liamfallon | 20c7487 | 2021-05-26 11:02:07 +0100 | [diff] [blame] | 146 | </project> |