blob: e863e48da443883cc225ea4b789b07b71566bd01 [file] [log] [blame]
liamfallon20c74872021-05-26 11:02:07 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
adheli.tavares7f630942022-03-09 10:39:29 +00004 Copyright (C) 2021-2022 Nordix Foundation.
liamfallon20c74872021-05-26 11:02:07 +01005 ================================================================================
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>
liamfallon3018f682022-04-28 16:00:51 +010030 <version>6.2.4-SNAPSHOT</version>
liamfallon20c74872021-05-26 11:02:07 +010031 </parent>
32
liamfallon43098042022-01-25 19:55:43 +000033 <artifactId>policy-clamp-runtime-acm</artifactId>
liamfallon20c74872021-05-26 11:02:07 +010034 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010047 <dependency>
adheli.tavares7f630942022-03-09 10:39:29 +000048 <groupId>org.onap.policy.clamp</groupId>
49 <artifactId>policy-clamp-examples</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
FrancescoFioraEstc3fb95f2022-04-27 10:32:51 +010053 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010063 <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>
FrancescoFioraEstd5c64582021-07-20 15:49:57 +010074 <artifactId>spring-boot-starter-aop</artifactId>
75 <version>${version.springboot}</version>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010079 <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>
FrancescoFioraEst13533272021-08-24 12:55:16 +010091 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100101 <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_Manchikanti8584f212022-04-12 17:41:14 +0100110 <dependency>
111 <groupId>com.google.code.gson</groupId>
112 <artifactId>gson</artifactId>
Sirisha_Manchikanti8584f212022-04-12 17:41:14 +0100113 </dependency>
liamfallon20c74872021-05-26 11:02:07 +0100114 </dependencies>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100115
116 <build>
117 <plugins>
118 <plugin>
adheli.tavares7f630942022-03-09 10:39:29 +0000119 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100136 <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>
liamfallon20c74872021-05-26 11:02:07 +0100149</project>