76 lines
2.6 KiB
XML
76 lines
2.6 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.byhah</groupId>
|
|
<artifactId>cloud-starters</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>cloud-starter-orm</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.byhah</groupId>
|
|
<artifactId>cloud-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah</groupId>
|
|
<artifactId>cloud-constant</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-basic-file</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.byhah.deploy</groupId>
|
|
<artifactId>byhah-deploy-starter-redisson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-core</artifactId>
|
|
<version>${sa.token.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.google.cloud.tools</groupId>
|
|
<artifactId>jib-maven-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.github.zlika</groupId>
|
|
<artifactId>reproducible-build-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |