xlcs/xlcs-parent/service/service-home/pom.xml

51 lines
1.8 KiB
XML
Raw Normal View History

2023-09-26 10:22:29 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
2024-01-07 01:10:08 +08:00
<groupId>com.yovinchen</groupId>
2023-09-26 10:22:29 +08:00
<artifactId>service</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>service-home</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
2024-01-07 01:10:08 +08:00
<groupId>com.yovinchen</groupId>
2023-09-26 10:22:29 +08:00
<artifactId>service-user-client</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
2024-01-07 01:10:08 +08:00
<groupId>com.yovinchen</groupId>
2023-09-26 10:22:29 +08:00
<artifactId>service-product-client</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
2024-01-07 01:10:08 +08:00
<groupId>com.yovinchen</groupId>
2023-09-26 10:22:29 +08:00
<artifactId>service-search-client</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
2023-10-08 22:07:41 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
2024-01-07 01:10:08 +08:00
<groupId>com.yovinchen</groupId>
2023-10-08 22:07:41 +08:00
<artifactId>service-activity-client</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
2023-09-26 10:22:29 +08:00
</dependencies>
</project>