| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 | 
							- <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.jeecgframework.boot</groupId>
 
- 		<artifactId>jeecg-boot-base</artifactId>
 
- 		<version>2.4.5</version>
 
- 	</parent>
 
- 	<modelVersion>4.0.0</modelVersion>
 
- 	<artifactId>jeecg-boot-base-core</artifactId>
 
- 	<repositories>
 
- 		<repository>
 
- 			<id>aliyun</id>
 
- 			<name>aliyun Repository</name>
 
- 			<url>http://maven.aliyun.com/nexus/content/groups/public</url>
 
- 			<snapshots>
 
- 				<enabled>false</enabled>
 
- 			</snapshots>
 
- 		</repository>
 
- 		<repository>
 
- 			<id>jeecg</id>
 
- 			<name>jeecg Repository</name>
 
- 			<url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
 
- 			<snapshots>
 
- 				<enabled>false</enabled>
 
- 			</snapshots>
 
- 		</repository>
 
- 	</repositories>
 
- 	<dependencies>
 
- 		<!--jeecg-tools-->
 
- 		<dependency>
 
- 			<groupId>org.jeecgframework.boot</groupId>
 
- 			<artifactId>jeecg-boot-base-tools</artifactId>
 
- 		</dependency>
 
- 		<!--集成springmvc框架并实现自动配置 -->
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-web</artifactId>
 
- 		</dependency>
 
- 		<!-- websocket -->
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-websocket</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-mail</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-aop</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-actuator</artifactId>
 
- 		</dependency>
 
- 		<!--springboot2.3+ 需引入validation对应的包-->
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-validation</artifactId>
 
- 		</dependency>
 
- 		<!-- commons -->
 
- 		<dependency>
 
- 			<groupId>commons-io</groupId>
 
- 			<artifactId>commons-io</artifactId>
 
- 			<version>${commons.version}</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>commons-lang</groupId>
 
- 			<artifactId>commons-lang</artifactId>
 
- 			<version>${commons.version}</version>
 
- 		</dependency>
 
- 		<!-- ureport -->
 
- 		<dependency>
 
- 			<groupId>com.bstek.ureport</groupId>
 
- 			<artifactId>ureport2-core</artifactId>
 
- 			<version>2.2.9</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.bstek.ureport</groupId>
 
- 			<artifactId>ureport2-console</artifactId>
 
- 			<version>2.2.9</version>
 
- 		</dependency>
 
- 		<!-- freemarker -->
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-freemarker</artifactId>
 
- 		</dependency>
 
- 		<!-- mybatis-plus -->
 
- 		<dependency>
 
- 			<groupId>com.baomidou</groupId>
 
- 			<artifactId>mybatis-plus-boot-starter</artifactId>
 
- 			<version>${mybatis-plus.version}</version>
 
- 		</dependency>
 
- 		<!-- druid -->
 
- 		<dependency>
 
- 			<groupId>com.alibaba</groupId>
 
- 			<artifactId>druid-spring-boot-starter</artifactId>
 
- 			<version>${druid.version}</version>
 
- 		</dependency>
 
- 		<!-- 动态数据源 -->
 
- 		<dependency>
 
- 			<groupId>com.baomidou</groupId>
 
- 			<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
 
- 			<version>${dynamic-datasource-spring-boot-starter.version}</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.hibernate</groupId>
 
- 			<artifactId>hibernate-core</artifactId>
 
- 			<exclusions>
 
- 				<exclusion>
 
- 					<groupId>commons-collections</groupId>
 
- 					<artifactId>commons-collections</artifactId>
 
- 				</exclusion>
 
- 			</exclusions>
 
- 		</dependency>
 
- 		<!--mysql-->
 
- 		<dependency>
 
- 			<groupId>mysql</groupId>
 
- 			<artifactId>mysql-connector-java</artifactId>
 
- 			<version>${mysql-connector-java.version}</version>
 
- 			<scope>runtime</scope>
 
- 		</dependency>
 
- 		<!--JWT-->
 
- 		<dependency>
 
- 			<groupId>com.auth0</groupId>
 
- 			<artifactId>java-jwt</artifactId>
 
- 			<version>${java-jwt.version}</version>
 
- 		</dependency>
 
- 		<!--shiro-->
 
- 		<dependency>
 
- 			<groupId>org.apache.shiro</groupId>
 
- 			<artifactId>shiro-spring-boot-starter</artifactId>
 
- 			<version>${shiro.version}</version>
 
- 		</dependency>
 
- 		<!-- shiro-redis -->
 
- 		<dependency>
 
- 			<groupId>org.crazycake</groupId>
 
- 			<artifactId>shiro-redis</artifactId>
 
- 			<version>${shiro-redis.version}</version>
 
- 			<exclusions>
 
- 				<exclusion>
 
- 					<groupId>org.apache.shiro</groupId>
 
- 					<artifactId>shiro-core</artifactId>
 
- 				</exclusion>
 
- 			</exclusions>
 
- 		</dependency>
 
- 		<!-- knife4j -->
 
- 		<dependency>
 
- 			<groupId>com.github.xiaoymin</groupId>
 
- 			<artifactId>knife4j-spring-boot-starter</artifactId>
 
- 			<version>${knife4j-spring-boot-starter.version}</version>
 
- 		</dependency>
 
- 		<!-- 代码生成器 -->
 
- 		<!-- 如下载失败,请参考此文档  http://doc.jeecg.com/2043876 -->
 
- 		<dependency>
 
- 			<groupId>org.jeecgframework.boot</groupId>
 
- 			<artifactId>codegenerate</artifactId>
 
- 			<version>${codegenerate.version}</version>
 
- 		</dependency>
 
- 		<!-- AutoPoi Excel工具类-->
 
- 		<dependency>
 
- 			<groupId>org.jeecgframework</groupId>
 
- 			<artifactId>autopoi-web</artifactId>
 
- 			<version>${autopoi-web.version}</version>
 
- 			<exclusions>
 
- 				<exclusion>
 
- 					<groupId>commons-codec</groupId>
 
- 					<artifactId>commons-codec</artifactId>
 
- 				</exclusion>
 
- 			</exclusions>
 
- 		</dependency>
 
- 		<!-- mini文件存储服务 -->
 
- 		<dependency>
 
- 			<groupId>io.minio</groupId>
 
- 			<artifactId>minio</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.google.guava</groupId>
 
- 			<artifactId>guava</artifactId>
 
- 			<version>${guava.version}</version>
 
- 		</dependency>
 
- 		<!-- 第三方登录  -->
 
- 		<dependency>
 
- 			<groupId>com.xkcoding.justauth</groupId>
 
- 			<artifactId>justauth-spring-boot-starter</artifactId>
 
- 		</dependency>
 
- 		<!-- pagehelper-->
 
- 		<dependency>
 
- 			<groupId>com.github.pagehelper</groupId>
 
- 			<artifactId>pagehelper</artifactId>
 
- 			<version>5.1.10</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.google.code.gson</groupId>
 
- 			<artifactId>gson</artifactId>
 
- 			<version>2.8.6</version>
 
- 		</dependency>
 
- 		<!-- aliyun oss -->
 
- 		<dependency>
 
- 			<groupId>com.aliyun.oss</groupId>
 
- 			<artifactId>aliyun-sdk-oss</artifactId>
 
- 			<version>${aliyun.oss.version}</version>
 
- 		</dependency>
 
- 	</dependencies>
 
- </project>
 
 
  |