blob: 333a75dc240b232725848333fda18c1bdefc324f [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>
liamfallon5f28fc42021-11-29 11:33:53 +000030 <version>6.2.1-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>
saul.gillccf9b0d2021-07-09 12:10:46 +010053 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010064 <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>
FrancescoFioraEstd5c64582021-07-20 15:49:57 +010075 <artifactId>spring-boot-starter-aop</artifactId>
76 <version>${version.springboot}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010080 <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>
FrancescoFioraEst13533272021-08-24 12:55:16 +010092 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100102 <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>
liamfallon20c74872021-05-26 11:02:07 +0100111 </dependencies>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100112
113 <build>
114 <plugins>
115 <plugin>
adheli.tavares7f630942022-03-09 10:39:29 +0000116 <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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100133 <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>
liamfallon20c74872021-05-26 11:02:07 +0100146</project>