mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-06 16:48:24 +08:00
77 lines
2.8 KiB
XML
77 lines
2.8 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>
|
|
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-dependencies</artifactId>
|
|
<version>1.8.2</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>mybatis-flex-dependencies</name>
|
|
<description>MyBatis-Flex BOM (Bill of Materials).</description>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>王帅</name>
|
|
<email>suomm.macher@foxmail.com</email>
|
|
<roles>
|
|
<role>author</role>
|
|
</roles>
|
|
<timezone>+8</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<mybatis-flex.version>1.8.2</mybatis-flex.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-annotation</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-codegen</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-core</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-processor</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-solon-plugin</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-spring</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
|
|
<version>${mybatis-flex.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|