blob: 7648175a30835f70cec618a9c9b83698a00a1547 [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>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010053 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-web</artifactId>
55 <exclusions>
56 <exclusion>
57 <groupId>org.springframework.boot</groupId>
58 <artifactId>spring-boot-starter-json</artifactId>
59 </exclusion>
60 </exclusions>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5c64582021-07-20 15:49:57 +010064 <artifactId>spring-boot-starter-aop</artifactId>
65 <version>${version.springboot}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010069 <artifactId>spring-boot-starter-security</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-starter-validation</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>io.springfox</groupId>
77 <artifactId>springfox-boot-starter</artifactId>
78 <version>${version.springfox}</version>
79 </dependency>
80 <dependency>
FrancescoFioraEst13533272021-08-24 12:55:16 +010081 <groupId>org.springframework.boot</groupId>
82 <artifactId>spring-boot-starter-actuator</artifactId>
83 <version>${version.springboot}</version>
84 </dependency>
85 <dependency>
86 <groupId>io.micrometer</groupId>
87 <artifactId>micrometer-registry-prometheus</artifactId>
88 <version>${version.io.micrometer}</version>
89 </dependency>
90 <dependency>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010091 <groupId>io.springfox</groupId>
92 <artifactId>springfox-swagger-ui</artifactId>
93 <scope>runtime</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-test</artifactId>
98 <scope>test</scope>
99 </dependency>
Sirisha_Manchikanti8584f212022-04-12 17:41:14 +0100100 <dependency>
101 <groupId>com.google.code.gson</groupId>
102 <artifactId>gson</artifactId>
Sirisha_Manchikanti8584f212022-04-12 17:41:14 +0100103 </dependency>
liamfallon20c74872021-05-26 11:02:07 +0100104 </dependencies>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100105
106 <build>
107 <plugins>
108 <plugin>
adheli.tavares7f630942022-03-09 10:39:29 +0000109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-remote-resources-plugin</artifactId>
111 <version>1.7.0</version>
112 <configuration>
113 <resourceBundles>
114 <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle>
115 </resourceBundles>
116 </configuration>
117 <executions>
118 <execution>
119 <goals>
120 <goal>process</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125 <plugin>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100126 <groupId>org.springframework.boot</groupId>
127 <artifactId>spring-boot-maven-plugin</artifactId>
128 <executions>
129 <execution>
130 <goals>
131 <goal>repackage</goal>
132 </goals>
133 <phase>package</phase>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
liamfallon20c74872021-05-26 11:02:07 +0100139</project>