From 69f30760f81594d79961ef61036795ad5efc7c26 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期一, 07 十二月 2020 12:59:35 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/y_project/RuoYi-Vue --- pom.xml | 79 ++++++++++++++++++++++++++++++++------- 1 files changed, 65 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 15d90be..b9d170b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,31 +6,33 @@ <groupId>com.ruoyi</groupId> <artifactId>ruoyi</artifactId> - <version>3.0.0</version> + <version>3.2.1</version> <name>ruoyi</name> <url>http://www.ruoyi.vip</url> <description>鑻ヤ緷绠$悊绯荤粺</description> <properties> - <ruoyi.version>3.0.0</ruoyi.version> + <ruoyi.version>3.2.1</ruoyi.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> - <mybatis.boot.version>1.3.2</mybatis.boot.version> - <druid.version>1.1.14</druid.version> - <bitwalker.version>1.19</bitwalker.version> + <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> + <druid.version>1.2.2</druid.version> + <bitwalker.version>1.21</bitwalker.version> <swagger.version>2.9.2</swagger.version> - <pagehelper.boot.version>1.2.5</pagehelper.boot.version> - <fastjson.version>1.2.70</fastjson.version> - <oshi.version>3.9.1</oshi.version> + <kaptcha.version>2.3.2</kaptcha.version> + <pagehelper.boot.version>1.3.0</pagehelper.boot.version> + <fastjson.version>1.2.74</fastjson.version> + <oshi.version>5.3.6</oshi.version> + <jna.version>5.6.0</jna.version> <commons.io.version>2.5</commons.io.version> <commons.fileupload.version>1.3.3</commons.fileupload.version> - <poi.version>3.17</poi.version> + <poi.version>4.1.2</poi.version> <velocity.version>1.7</velocity.version> - <jwt.version>0.9.0</jwt.version> - <mybatis-plus.version>3.3.0</mybatis-plus.version> - <hutool.version>5.1.0</hutool.version> + <jwt.version>0.9.1</jwt.version> + <mybatis-plus.version>3.4.1</mybatis-plus.version> + <hutool.version>5.4.0</hutool.version> </properties> <!-- 渚濊禆澹版槑 --> @@ -41,7 +43,7 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> - <version>2.1.1.RELEASE</version> + <version>2.1.18.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> @@ -78,6 +80,18 @@ <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>${oshi.version}</version> + </dependency> + + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>${jna.version}</version> + </dependency> + + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna-platform</artifactId> + <version>${jna.version}</version> </dependency> <!-- swagger2--> @@ -146,6 +160,13 @@ <version>${jwt.version}</version> </dependency> + <!--楠岃瘉鐮� --> + <dependency> + <groupId>com.github.penggle</groupId> + <artifactId>kaptcha</artifactId> + <version>${kaptcha.version}</version> + </dependency> + <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> @@ -161,7 +182,7 @@ <artifactId>hutool-all</artifactId> <version>${hutool.version}</version> </dependency> - + <!-- 瀹氭椂浠诲姟--> <dependency> <groupId>com.ruoyi</groupId> @@ -228,6 +249,14 @@ </configuration> </plugin> </plugins> + <resources> + <resource> + <!--鎵撳寘璇ョ洰褰曚笅鐨� application.yml --> + <directory>src/main/resources</directory> + <!-- 鍚敤杩囨护 鍗宠璧勬簮涓殑鍙橀噺灏嗕細琚繃婊ゅ櫒涓殑鍊兼浛鎹� --> + <filtering>true</filtering> + </resource> + </resources> </build> <repositories> @@ -255,4 +284,26 @@ </pluginRepository> </pluginRepositories> + <profiles> + <profile> + <id>dev</id> + <properties> + <!-- 鐜鏍囪瘑锛岄渶瑕佷笌閰嶇疆鏂囦欢鐨勫悕绉扮浉瀵瑰簲 --> + <profiles.active>dev</profiles.active> + <logging.level>debug</logging.level> + </properties> + <activation> + <!-- 榛樿鐜 --> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + <profile> + <id>prod</id> + <properties> + <profiles.active>prod</profiles.active> + <logging.level>warn</logging.level> + </properties> + </profile> + </profiles> + </project> \ No newline at end of file -- Gitblit v1.9.3