| | |
| | | |
| | | <groupId>com.ruoyi</groupId> |
| | | <artifactId>ruoyi</artifactId> |
| | | <version>2.1.0</version> |
| | | <version>2.2.0</version> |
| | | <packaging>jar</packaging> |
| | | |
| | | <name>ruoyi</name> |
| | |
| | | <java.version>1.8</java.version> |
| | | <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version> |
| | | <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version> |
| | | <fastjson.version>1.2.47</fastjson.version> |
| | | <fastjson.version>1.2.68</fastjson.version> |
| | | <druid.version>1.1.14</druid.version> |
| | | <commons.io.version>2.5</commons.io.version> |
| | | <commons.fileupload.version>1.3.3</commons.fileupload.version> |
| | |
| | | <oshi.version>3.9.1</oshi.version> |
| | | <velocity.version>1.7</velocity.version> |
| | | <mybatis-plus.version>3.3.0</mybatis-plus.version> |
| | | <hutool.version>5.0.6</hutool.version> |
| | | <hutool.version>5.1.0</hutool.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | <groupId>org.springframework.boot</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | <!-- web 容器使用 undertow 性能更强 --> |
| | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | <groupId>org.springframework.boot</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- spring-boot-devtools --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-devtools</artifactId> |
| | | <optional>true</optional> <!-- 表示依赖不会传递 --> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- spring security 安全认证 --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-security</artifactId> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- redis 缓存操作 --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <artifactId>mysql-connector-java</artifactId> |
| | | <scope>runtime</scope> |
| | | </dependency> |
| | | |
| | | <!-- <!– SpringBoot集成mybatis框架 –>--> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.mybatis.spring.boot</groupId>--> |
| | | <!-- <artifactId>mybatis-spring-boot-starter</artifactId>--> |
| | | <!-- <version>${mybatis.spring.boot.starter.version}</version>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- pagehelper 分页插件 --> |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | |
| | | <artifactId>poi-ooxml</artifactId> |
| | | <version>${poi.version}</version> |
| | | </dependency> |
| | | |
| | | <!--velocity代码生成使用模板 --> |
| | | <dependency> |
| | | <groupId>org.apache.velocity</groupId> |
| | |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- 定时任务 --> |
| | | <dependency> |
| | | <groupId>org.quartz-scheduler</groupId> |
| | | <artifactId>quartz</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>com.mchange</groupId> |
| | | <artifactId>c3p0</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | <build> |