mybatis-plus-extra
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gitee.qingyu-mo</groupId> <artifactId>mybatis-plus-extra</artifactId> <version>1.0.7.15</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.gitee.qingyu-mo</groupId> <artifactId>mybatis-plus-extra</artifactId> <version>1.0.7.15</version> <name>mybatis-plus-extra</name> <description>懒人福音,进一步增强mybatis-plus的功能,增加了多表查询/函数查询(例如:sum)/子查询/json字段查询等功能,并实现真正的批量插入,批量更新</description> <url>https://gitee.com/qingyu-mo/mybatis-plus-extra</url> <licenses> <license> <name>Mulan Permissive Software License,Version 2</name> <url>https://license.coscl.org.cn/MulanPSL2</url> </license> </licenses> <developers> <developer> <id>qingyu</id> <name>mo</name> <email>849280429@qq.com</email> </developer> </developers> <scm> <url>https://gitee.com/qingyu-mo/mybatis-plus-extra</url> <connection>https://gitee.com/qingyu-mo/mybatis-plus-extra.git</connection> <developerConnection>https://gitee.com/qingyu-mo</developerConnection> </scm> <properties> <compile.version>8</compile.version> <maven.javadoc.skip>true</maven.javadoc.skip> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding> <mybatis-plus.version>3.5.5</mybatis-plus.version> <lombok.version>1.18.30</lombok.version> <hutool.version>5.8.29</hutool.version> <fastjson.version>1.2.83</fastjson.version> <easyexcel.version>4.0.1</easyexcel.version> <redisson.version>3.32.0</redisson.version> <jackson.version.datatype>2.13.3</jackson.version.datatype> <spring-core.version>5.3.33</spring-core.version> <spring-boot.version>2.7.1</spring-boot.version> <spring-webmvc.version>5.3.7</spring-webmvc.version> <commons-compress.version>1.26.1</commons-compress.version> <tomcat-embed-core.version>9.0.87</tomcat-embed-core.version> <cron-utils.version>9.2.1</cron-utils.version> <jackson-core.version>2.17.0</jackson-core.version> </properties> <profiles> <profile> <id>release</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>release</id> <url>https://s01.oss.sonatype.org/content/repositories/releases/</url> </repository> </distributionManagement> </profile> <profile> <id>private-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>private-release</id> <url>http://10.1.10.224:30010/repository/maven-releases/</url> </repository> </distributionManagement> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${compile.version}</source> <target>${compile.version}</target> <compilerArgument>-Xlint:unchecked</compilerArgument> </configuration> </plugin> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>oss</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Gpg Signature --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>gpg</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>${mybatis-plus.version}</version> <scope>compile</scope> </dependency> <!-- hutool工具 --> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>${hutool.version}</version> <scope>compile</scope> </dependency> <!-- lombok工具 --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <!-- excel工具 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>${easyexcel.version}</version> <scope>compile</scope> </dependency> <!-- easyexcel引用版本有漏洞,更改新版本 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${commons-compress.version}</version> <scope>compile</scope> </dependency> <!-- cron 注意: 这里必须要使用 9.1.6 及以上版本, 之前的版本有严重漏洞 --> <dependency> <groupId>com.cronutils</groupId> <artifactId>cron-utils</artifactId> <version>${cron-utils.version}</version> <scope>compile</scope> </dependency> <!-- JSON 解析器和生成器 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>${fastjson.version}</version> <scope>compile</scope> </dependency> <!-- redisson --> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> <version>${redisson.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>${jackson.version.datatype}</version> </dependency> <!-- 以下包不传递 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring-core.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>${spring-boot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring-boot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring-core.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring-core.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-core.version}</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>