| | |
| | |
|
| | | <groupId>com.ruoyi</groupId>
|
| | | <artifactId>ruoyi</artifactId>
|
| | | <version>1.0</version>
|
| | | <version>2.2.0</version>
|
| | | <packaging>jar</packaging>
|
| | |
|
| | | <name>ruoyi</name>
|
| | |
| | | <bitwalker.version>1.19</bitwalker.version>
|
| | | <jwt.version>0.9.0</jwt.version>
|
| | | <swagger.version>2.9.2</swagger.version>
|
| | | <poi.version>3.17</poi.version>
|
| | | <oshi.version>3.9.1</oshi.version>
|
| | | <velocity.version>1.7</velocity.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>
|
| | |
|
| | | <!-- SpringBoot 测试 -->
|
| | |
| | | <groupId>net.java.dev.jna</groupId>
|
| | | <artifactId>jna-platform</artifactId>
|
| | | </dependency>
|
| | | |
| | | <!-- excel工具 -->
|
| | | <dependency>
|
| | | <groupId>org.apache.poi</groupId>
|
| | | <artifactId>poi-ooxml</artifactId>
|
| | | <version>${poi.version}</version>
|
| | | </dependency>
|
| | |
|
| | | <!--velocity代码生成使用模板 -->
|
| | | <dependency>
|
| | | <groupId>org.apache.velocity</groupId>
|
| | | <artifactId>velocity</artifactId>
|
| | | <version>${velocity.version}</version>
|
| | | </dependency>
|
| | | |
| | | <!-- 定时任务 -->
|
| | | <dependency>
|
| | | <groupId>org.quartz-scheduler</groupId>
|
| | | <artifactId>quartz</artifactId>
|
| | | <exclusions>
|
| | | <exclusion>
|
| | | <groupId>com.mchange</groupId>
|
| | | <artifactId>c3p0</artifactId>
|
| | | </exclusion>
|
| | | </exclusions>
|
| | | </dependency>
|
| | |
|
| | | </dependencies>
|
| | |
|