blob: 3bedf0daf208840b10163a7b126ddcf04d472f61 [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>
liamfallon25b23782022-04-12 21:35:15 +010030 <version>6.2.3-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>
saul.gillccf9b0d2021-07-09 12:10:46 +010055 <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>
liamfallon20c74872021-05-26 11:02:07 +0100110 </dependencies>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100111
112 <build>
113 <plugins>
114 <plugin>
adheli.tavares7f630942022-03-09 10:39:29 +0000115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-remote-resources-plugin</artifactId>
117 <version>1.7.0</version>
118 <configuration>
119 <resourceBundles>
120 <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle>
121 </resourceBundles>
122 </configuration>
123 <executions>
124 <execution>
125 <goals>
126 <goal>process</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
131 <plugin>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100132 <groupId>org.springframework.boot</groupId>
133 <artifactId>spring-boot-maven-plugin</artifactId>
134 <executions>
135 <execution>
136 <goals>
137 <goal>repackage</goal>
138 </goals>
139 <phase>package</phase>
140 </execution>
141 </executions>
142 </plugin>
143 </plugins>
144 </build>
liamfallon20c74872021-05-26 11:02:07 +0100145</project>