blob: 50deb5679d043364eaadd5112d76d87b5db7bf52 [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>
liamfallon9a005432022-09-23 10:59:06 +010030 <version>6.3.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>
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>
FrancescoFioraEsta1b6bef2022-07-12 14:50:18 +010060 <exclusion>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-core</artifactId>
63 </exclusion>
64 <exclusion>
65 <groupId>com.fasterxml.jackson.core</groupId>
66 <artifactId>jackson-databind</artifactId>
67 </exclusion>
68 <exclusion>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-annotations</artifactId>
71 </exclusion>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010072 </exclusions>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5c64582021-07-20 15:49:57 +010076 <artifactId>spring-boot-starter-aop</artifactId>
77 <version>${version.springboot}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.springframework.boot</groupId>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +010081 <artifactId>spring-boot-starter-security</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-validation</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>io.springfox</groupId>
89 <artifactId>springfox-boot-starter</artifactId>
90 <version>${version.springfox}</version>
91 </dependency>
92 <dependency>
FrancescoFioraEst13533272021-08-24 12:55:16 +010093 <groupId>org.springframework.boot</groupId>
94 <artifactId>spring-boot-starter-actuator</artifactId>
95 <version>${version.springboot}</version>
96 </dependency>
97 <dependency>
98 <groupId>io.micrometer</groupId>
99 <artifactId>micrometer-registry-prometheus</artifactId>
100 <version>${version.io.micrometer}</version>
101 </dependency>
102 <dependency>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100103 <groupId>io.springfox</groupId>
104 <artifactId>springfox-swagger-ui</artifactId>
105 <scope>runtime</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-test</artifactId>
110 <scope>test</scope>
111 </dependency>
Sirisha_Manchikanti8584f212022-04-12 17:41:14 +0100112 <dependency>
113 <groupId>com.google.code.gson</groupId>
114 <artifactId>gson</artifactId>
Sirisha_Manchikanti8584f212022-04-12 17:41:14 +0100115 </dependency>
liamfallon20c74872021-05-26 11:02:07 +0100116 </dependencies>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100117
118 <build>
119 <plugins>
120 <plugin>
adheli.tavares7f630942022-03-09 10:39:29 +0000121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-remote-resources-plugin</artifactId>
123 <version>1.7.0</version>
124 <configuration>
125 <resourceBundles>
126 <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle>
127 </resourceBundles>
128 </configuration>
129 <executions>
130 <execution>
131 <goals>
132 <goal>process</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 <plugin>
FrancescoFioraEstd5fb4e02021-07-05 10:36:42 +0100138 <groupId>org.springframework.boot</groupId>
139 <artifactId>spring-boot-maven-plugin</artifactId>
140 <executions>
141 <execution>
142 <goals>
143 <goal>repackage</goal>
144 </goals>
145 <phase>package</phase>
146 </execution>
147 </executions>
148 </plugin>
149 </plugins>
150 </build>
liamfallon20c74872021-05-26 11:02:07 +0100151</project>