blob: 0b715c9f44952ddc1bf08d1e945fe2fb514b3001 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
Bruno Sakotof05a5032021-03-03 18:27:54 -05002<!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2020 Linux Foundation.
lukegleeson7e243c92023-04-20 15:32:12 +01005 Modifications Copyright (C) 2020-2023 Nordix Foundation.
Bruno Sakotof05a5032021-03-03 18:27:54 -05006 Modifications Copyright (C) 2021 Bell Canada.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
Renu Kumari4d520012021-08-30 11:50:43 -040019
20 SPDX-License-Identifier: Apache-2.0
Bruno Sakotof05a5032021-03-03 18:27:54 -050021 ============LICENSE_END=========================================================
22-->
23
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020024<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <groupId>org.onap.cps</groupId>
30 <artifactId>cps-parent</artifactId>
lukegleeson7e243c92023-04-20 15:32:12 +010031 <version>3.3.1-SNAPSHOT</version>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020032 <relativePath>../cps-parent/pom.xml</relativePath>
33 </parent>
34
35 <artifactId>cps-rest</artifactId>
36
37 <dependencies>
38 <dependency>
39 <groupId>${project.groupId}</groupId>
40 <artifactId>cps-service</artifactId>
41 </dependency>
42 <dependency>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020043 <groupId>org.springframework.boot</groupId>
44 <artifactId>spring-boot-starter-web</artifactId>
45 <exclusions>
46 <exclusion>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-tomcat</artifactId>
49 </exclusion>
50 </exclusions>
51 </dependency>
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
Ruslan Kashapov8fe579d2021-03-04 17:13:00 +020054 <artifactId>spring-boot-starter-validation</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.springframework.boot</groupId>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020058 <artifactId>spring-boot-starter-jetty</artifactId>
59 </dependency>
60 <dependency>
Bruno Sakoto9be188d2021-06-16 11:47:54 -040061 <groupId>org.springframework.retry</groupId>
62 <artifactId>spring-retry</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework</groupId>
66 <artifactId>spring-aspects</artifactId>
67 </dependency>
68 <dependency>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020069 <groupId>io.swagger.core.v3</groupId>
70 <artifactId>swagger-annotations</artifactId>
71 </dependency>
72 <dependency>
JosephKeenan2472e612021-06-23 14:15:52 +010073 <groupId>org.springdoc</groupId>
74 <artifactId>springdoc-openapi-ui</artifactId>
JosephKeenan2472e612021-06-23 14:15:52 +010075 </dependency>
76 <dependency>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020077 <groupId>org.apache.commons</groupId>
78 <artifactId>commons-lang3</artifactId>
79 </dependency>
80 <dependency>
lukegleesond5bda882022-03-02 14:32:47 +000081 <groupId>org.mapstruct</groupId>
82 <artifactId>mapstruct</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.mapstruct</groupId>
86 <artifactId>mapstruct-processor</artifactId>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +020087 </dependency>
88 <!-- T E S T D E P E N D E N C I E S -->
89 <dependency>
90 <groupId>org.codehaus.groovy</groupId>
91 <artifactId>groovy</artifactId>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
shivasubedi8a74ced2021-04-29 12:48:05 +010095 <groupId>org.codehaus.groovy</groupId>
96 <artifactId>groovy-json</artifactId>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +0200100 <groupId>org.spockframework</groupId>
101 <artifactId>spock-core</artifactId>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.spockframework</groupId>
106 <artifactId>spock-spring</artifactId>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>cglib</groupId>
111 <artifactId>cglib-nodep</artifactId>
112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.springframework.boot</groupId>
116 <artifactId>spring-boot-starter-test</artifactId>
117 <scope>test</scope>
118 <exclusions>
119 <exclusion>
120 <groupId>org.junit.vintage</groupId>
121 <artifactId>junit-vintage-engine</artifactId>
122 </exclusion>
123 </exclusions>
124 </dependency>
125 </dependencies>
126
127 <build>
128 <plugins>
129 <!-- Swagger code generation. -->
130 <plugin>
131 <groupId>io.swagger.codegen.v3</groupId>
132 <artifactId>swagger-codegen-maven-plugin</artifactId>
133 <executions>
134 <execution>
Renu Kumari4d520012021-08-30 11:50:43 -0400135 <id>code-gen</id>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +0200136 <goals>
137 <goal>generate</goal>
138 </goals>
139 <configuration>
Renu Kumari4d520012021-08-30 11:50:43 -0400140 <inputSpec>${project.basedir}/docs/openapi/openapi.yml</inputSpec>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +0200141 <invokerPackage>org.onap.cps.rest.controller</invokerPackage>
142 <modelPackage>org.onap.cps.rest.model</modelPackage>
143 <apiPackage>org.onap.cps.rest.api</apiPackage>
144 <language>spring</language>
145 <generateSupportingFiles>false</generateSupportingFiles>
146 <configOptions>
147 <sourceFolder>src/gen/java</sourceFolder>
148 <dateLibrary>java11</dateLibrary>
149 <interfaceOnly>true</interfaceOnly>
150 <useTags>true</useTags>
151 </configOptions>
152 </configuration>
153 </execution>
154 </executions>
155 </plugin>
Renu Kumari4d520012021-08-30 11:50:43 -0400156 <plugin>
157 <artifactId>maven-resources-plugin</artifactId>
158 <executions>
159 <execution>
160 <id>copy-resources</id>
161 <phase>compile</phase>
162 <goals>
163 <goal>copy-resources</goal>
164 </goals>
165 <configuration>
166 <outputDirectory>${project.basedir}/target/classes/static/api-docs/cps-core</outputDirectory>
167 <resources>
168 <resource>
169 <directory>${project.basedir}/target/generated-sources/swagger/</directory>
170 <includes>
171 <include>openapi.yaml</include>
172 </includes>
173 </resource>
174 </resources>
175 </configuration>
176 </execution>
177 </executions>
178 </plugin>
Ruslan Kashapov5e1a5a72021-02-04 17:26:01 +0200179 </plugins>
180 </build>
181</project>