mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
92 lines
3.4 KiB
XML
92 lines
3.4 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">
|
|
<!--
|
|
这个模块啥也没有
|
|
和直接引入starter效果是一模一样的
|
|
在项目结构模块化以后保留原有的 artifactId
|
|
可能会在未来删除此模块,建议使用starter
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
<version>最新版本</version>
|
|
</dependency>
|
|
-->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join</artifactId>
|
|
<version>${revision}</version>
|
|
<name>mybatis-plus-join</name>
|
|
|
|
<description>An enhanced toolkit of Mybatis-Plus to simplify development.</description>
|
|
<url>https://github.com/yulichang/mybatis-plus-join</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>mybatis-plus-join</id>
|
|
<name>yulichang</name>
|
|
<email>yu_lichang@qq.com</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/yulichang/mybatis-plus-join.git</connection>
|
|
<developerConnection>scm:git:https://github.com/yulichang/mybatis-plus-join.git</developerConnection>
|
|
<url>https://github.com/yulichang/mybatis-plus-join</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<revision>1.4.13</revision>
|
|
|
|
<jdkVersion>1.8</jdkVersion>
|
|
<jdkVersion.test>1.8</jdkVersion.test>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<github.global.server>github</github.global.server>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>1.5.0</version>
|
|
<configuration>
|
|
<updatePomFile>true</updatePomFile>
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>flatten</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>flatten</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>flatten.clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|