From 816022de986f97869923dc8024e4985242a9068e Mon Sep 17 00:00:00 2001 From: liufan9527 <937359084@qq.com> Date: 星期三, 27 十一月 2024 09:39:49 +0800 Subject: [PATCH] Merge branch 'master' of http://103.135.160.14:9034/r/se-cloud --- se-modules/se-system/pom.xml | 36 +++++++++++++++++++++++++++--------- 1 files changed, 27 insertions(+), 9 deletions(-) diff --git a/se-modules/se-system/pom.xml b/se-modules/se-system/pom.xml index d80a606..5a727b5 100644 --- a/se-modules/se-system/pom.xml +++ b/se-modules/se-system/pom.xml @@ -40,14 +40,7 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> - - <!-- Swagger UI --> - <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-swagger-ui</artifactId> - <version>${swagger.fox.version}</version> - </dependency> - + <!-- Mysql Connector --> <dependency> <groupId>com.mysql</groupId> @@ -71,7 +64,14 @@ <groupId>com.se</groupId> <artifactId>se-common-log</artifactId> </dependency> - + + <!-- Swagger UI --> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger-ui</artifactId> + <version>${swagger.fox.version}</version> + </dependency> + <!-- SE Common Swagger --> <dependency> <groupId>com.se</groupId> @@ -105,6 +105,24 @@ <groupId>com.se</groupId> <artifactId>se-api-system</artifactId> </dependency> + + <!-- Apache Velocity --> + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity-engine-core</artifactId> + </dependency> + + <!-- Quartz --> + <dependency> + <groupId>org.quartz-scheduler</groupId> + <artifactId>quartz</artifactId> + <exclusions> + <exclusion> + <groupId>com.mchange</groupId> + <artifactId>c3p0</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> <build> -- Gitblit v1.9.3