From e41a58b10d0e246c54aff7fd722f0505b082118f Mon Sep 17 00:00:00 2001 From: itino <yaogogo@88.com> Date: 星期四, 17 十一月 2022 17:28:36 +0800 Subject: [PATCH] update 字典数据json序列化工具加一个 bean的非空判断 --- ruoyi-admin/pom.xml | 42 ++++++++++++++++++++++-------------------- 1 files changed, 22 insertions(+), 20 deletions(-) diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index 1c8c759..f966de0 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -5,7 +5,7 @@ <parent> <artifactId>ruoyi-vue-plus</artifactId> <groupId>com.ruoyi</groupId> - <version>4.0.1</version> + <version>4.3.1</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> @@ -28,6 +28,21 @@ <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> + </dependency> + <!-- Oracle --> + <dependency> + <groupId>com.oracle.database.jdbc</groupId> + <artifactId>ojdbc8</artifactId> + </dependency> + <!-- PostgreSql --> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + </dependency> + <!-- SqlServer --> + <dependency> + <groupId>com.microsoft.sqlserver</groupId> + <artifactId>mssql-jdbc</artifactId> </dependency> <!-- 鏍稿績妯″潡--> @@ -63,6 +78,12 @@ <artifactId>ruoyi-demo</artifactId> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> @@ -90,25 +111,6 @@ <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <warName>${project.artifactId}</warName> - </configuration> - </plugin> - <plugin> - <groupId>com.spotify</groupId> - <artifactId>docker-maven-plugin</artifactId> - <version>${docker.plugin.version}</version> - <configuration> - <imageName>${docker.namespace}/ruoyi-server:${project.version}</imageName> - <dockerDirectory>${project.basedir}</dockerDirectory> - <dockerHost>${docker.registry.host}</dockerHost> - <registryUrl>${docker.registry.url}</registryUrl> - <serverId>${docker.registry.url}</serverId> - <resources> - <resource> - <targetPath>/</targetPath> - <directory>${project.build.directory}</directory> - <include>${project.build.finalName}.jar</include> - </resource> - </resources> </configuration> </plugin> </plugins> -- Gitblit v1.9.3