main
xml 14 lines 1.32 KB
Raw
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent><groupId>com.aiinvestment</groupId><artifactId>ai-investment-platform-services</artifactId><version>0.1.0-SNAPSHOT</version></parent>
5 <artifactId>recommendation-service</artifactId>
6 <dependencies>
7 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
8 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>
9 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-validation</artifactId></dependency>
10 <dependency><groupId>com.aiinvestment</groupId><artifactId>shared-domain</artifactId><version>${project.version}</version></dependency>
11 <dependency><groupId>com.aiinvestment</groupId><artifactId>shared-web</artifactId><version>${project.version}</version></dependency>
12 </dependencies>
13 <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build>
14 </project>