1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <parent >
6+ <groupId >com.recombee</groupId >
7+ <artifactId >api-client-parent</artifactId >
8+ <version >4.2.0-SNAPSHOT</version >
9+ </parent >
10+ <artifactId >api-client-spring-boot-3-autoconfigure</artifactId >
11+ <name >Recombee API Client Spring Boot 3 Autoconfiguration</name >
12+
13+ <properties >
14+ <dependency .springboot.version>${spring.boot.3.version} </dependency .springboot.version>
15+ </properties >
16+
17+ <dependencyManagement >
18+ <dependencies >
19+ <dependency >
20+ <groupId >org.springframework.boot</groupId >
21+ <artifactId >spring-boot-dependencies</artifactId >
22+ <version >${dependency.springboot.version} </version >
23+ <type >pom</type >
24+ <scope >import</scope >
25+ </dependency >
26+ </dependencies >
27+ </dependencyManagement >
28+
29+ <dependencies >
30+ <dependency >
31+ <groupId >org.springframework.boot</groupId >
32+ <artifactId >spring-boot-autoconfigure</artifactId >
33+ </dependency >
34+ <dependency >
35+ <groupId >com.recombee</groupId >
36+ <artifactId >api-client</artifactId >
37+ <optional >true</optional >
38+ </dependency >
39+ <dependency >
40+ <groupId >org.springframework.boot</groupId >
41+ <artifactId >spring-boot-configuration-processor</artifactId >
42+ <optional >true</optional >
43+ </dependency >
44+ <dependency >
45+ <groupId >org.springframework.boot</groupId >
46+ <artifactId >spring-boot-starter-validation</artifactId >
47+ <optional >true</optional >
48+ </dependency >
49+
50+ <dependency >
51+ <groupId >org.springframework.boot</groupId >
52+ <artifactId >spring-boot-starter-test</artifactId >
53+ <scope >test</scope >
54+ </dependency >
55+ </dependencies >
56+ </project >
0 commit comments