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.
197 lines
6.8 KiB
197 lines
6.8 KiB
4 weeks ago
|
<?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.yeguang</groupId>
|
||
|
<artifactId>siliqua-recognition-solon</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<parent>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-parent</artifactId>
|
||
|
<version>3.0.3</version>
|
||
|
</parent>
|
||
|
<properties>
|
||
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<mybatis-plus.version>3.5.9</mybatis-plus.version>
|
||
|
<mybatis-flex.version>1.9.8</mybatis-flex.version>
|
||
|
<mapstruct.version>1.6.1</mapstruct.version>
|
||
|
<hutool.version>5.8.22</hutool.version>
|
||
|
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon.web.cors</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-logging-logback</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-net-httputils</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-openapi2-knife4j</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 数据库相关依赖-->
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-data-sqlutils</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.zaxxer</groupId>
|
||
|
<artifactId>HikariCP</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>mybatis-solon-plugin</artifactId>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>com.mybatis-flex</groupId>-->
|
||
|
<!-- <artifactId>mybatis-flex-solon-plugin</artifactId>-->
|
||
|
<!-- <version>${mybatis-flex.version}</version>-->
|
||
|
<!-- <exclusions>-->
|
||
|
<!-- <exclusion>-->
|
||
|
<!-- <groupId>org.noear</groupId>-->
|
||
|
<!-- <artifactId>mybatis-solon-plugin</artifactId>-->
|
||
|
<!-- </exclusion>-->
|
||
|
<!-- </exclusions>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-solon-plugin</artifactId>
|
||
|
<version>${mybatis-plus.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-jsqlparser-4.9</artifactId>
|
||
|
<version>${mybatis-plus.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.33</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.34</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-cache-redisson</artifactId>
|
||
|
<!-- 或者用 (如果不需要 CacheService,直接用它)
|
||
|
<artifactId>redisson-solon-plugin</artifactId>
|
||
|
-->
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>sa-token-solon-plugin</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>sa-token-dao-redisson-jackson</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.dev33</groupId>
|
||
|
<artifactId>sa-token-jwt</artifactId>
|
||
|
<version>1.39.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-cloud</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-config-plus</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.fastjson2</groupId>
|
||
|
<artifactId>fastjson2</artifactId>
|
||
|
<version>2.0.43</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>2.16.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-email</artifactId>
|
||
|
<version>1.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mapstruct</groupId>
|
||
|
<artifactId>mapstruct</artifactId>
|
||
|
<version>${mapstruct.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-collections4</artifactId>
|
||
|
<version>4.4</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>2.17.0</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>easyexcel</artifactId>
|
||
|
<version>4.0.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.huaweicloud</groupId>
|
||
|
<artifactId>esdk-obs-java</artifactId>
|
||
|
<version>3.21.11</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-annotations</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-core</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.noear</groupId>
|
||
|
<artifactId>solon-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|