123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?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">
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.4.1</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <groupId>com.huimv</groupId>
- <artifactId>huimv-env-common</artifactId>
- <version>0.0.7-SNAPSHOT</version>
- <properties>
- <java.version>1.8</java.version>
- <maven.compile>1.8</maven.compile>
- <druid.version>1.1.14</druid.version>
- <mysql.version>6.0.6</mysql.version>
- <junit.version>4.13.2</junit.version>
- <hutool.version>5.8.1</hutool.version>
- <velocity.version>2.0</velocity.version>
- <lombok.version>1.16.18</lombok.version>
- <netty.version>4.1.45.Final</netty.version>
- <fastjson.version>1.2.28</fastjson.version>
- <httpClient.version>4.5.5</httpClient.version>
- <servletApi.version>3.1.0</servletApi.version>
- <freemarker.version>2.3.31</freemarker.version>
- <commonsLang3.version>3.7</commonsLang3.version>
- <mybatisPlus.version>3.4.3.4</mybatisPlus.version>
- <huimvCommon.version>0.0.6-SNAPSHOT</huimvCommon.version>
- <huimvEnvCommon.version>0.0.1-SNAPSHOT</huimvEnvCommon.version>
- <junitPlatformCommons.version>1.8.2</junitPlatformCommons.version>
- <mybatisPlusGenerator.version>3.3.2</mybatisPlusGenerator.version>
- <mybatisPlusExtension.version>3.5.2</mybatisPlusExtension.version>
- <captcha.version>0.0.6</captcha.version>
- <captcha.reids.version>0.0.6</captcha.reids.version>
- <net.sf.json-lib.version>2.2.3</net.sf.json-lib.version>
- <com.belerweb.version>2.5.1</com.belerweb.version>
- <io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
- <com.auth0.version>3.3.0</com.auth0.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${io.jsonwebtoken.version}</version>
- </dependency>
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>${com.auth0.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.dustlight.captcha</groupId>
- <artifactId>captcha-core</artifactId>
- <version>${captcha.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.dustlight.captcha</groupId>
- <artifactId>redis-store</artifactId>
- <version>${captcha.reids.version}</version>
- </dependency>
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>${com.belerweb.version}</version>
- </dependency>
- <!-- fastjson -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!-- mysql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <!--hutool-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>${httpClient.version}</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- <version>${junit.version}</version>
- </dependency>
- <!-- lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commonsLang3.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>${servletApi.version}</version>
- </dependency>
- <!--Mybatis-Plus生成器依赖-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>${mybatisPlusGenerator.version}</version>
- </dependency>
- <!--freemarker 模板引擎(没有用原生的模板引擎)-->
- <dependency>
- <groupId>org.freemarker</groupId>
- <artifactId>freemarker</artifactId>
- <version>${freemarker.version}</version>
- </dependency>
- <!--mybits-plus-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatisPlus.version}</version>
- </dependency>
- <!-- mybatis-plus-extension -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- <version>${mybatisPlusExtension.version}</version>
- </dependency>
- <!-- 连接池 -->
- <dependency>
- <!--自动配置-->
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <!-- velocity -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>${velocity.version}</version>
- </dependency>
- <!-- freemarker -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- <!-- netty -->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>${netty.version}</version>
- </dependency>
- <!-- junit -->
- <dependency>
- <groupId>org.junit.platform</groupId>
- <artifactId>junit-platform-commons</artifactId>
- <version>${junitPlatformCommons.version}</version>
- </dependency>
- <!-- 二方包统一版本管理 -->
- <dependency>
- <groupId>com.huimv</groupId>
- <artifactId>huimv-common</artifactId>
- <version>${huimvCommon.version}</version>
- </dependency>
- <!-- 一方包统一版本管理 -->
- <dependency>
- <groupId>com.huimv</groupId>
- <artifactId>huimv-env-common</artifactId>
- <version>${huimvEnvCommon.version}</version>
- </dependency>
- </dependencies>
- </project>
|