You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.0 KiB
86 lines
3.0 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<parent> |
|
<groupId>apelet</groupId> |
|
<artifactId>baseservice</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>baseservice-service</artifactId> |
|
<version>1.0.0</version> |
|
<name>baseservice-service</name> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<!-- 业务组件依赖 --> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>baseservice-api</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-log</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-redis</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-aliyun-oss</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-minio</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-sequence</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-dict</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<!-- 分布式事务组件。这里需要覆盖一下seata的版本,否则仍然使用spring-cloud-alibaba中自带版本 --> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-seata</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>seata-spring-boot-starter</artifactId> |
|
<groupId>io.seata</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.seata</groupId> |
|
<artifactId>seata-spring-boot-starter</artifactId> |
|
<version>${seata.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.seata</groupId> |
|
<artifactId>seata-serializer-kryo</artifactId> |
|
<version>${seata.version}</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>${spring-boot.version}</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|