mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
1、新增微服务jar包瘦身配置;2、报表模板导入excel模板接口get->post
This commit is contained in:
+22
-10
@@ -101,6 +101,27 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring.boot.version}</version> <!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
|
<version>${spring.boot.version}</version> <!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
|
||||||
|
<configuration>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
@@ -108,15 +129,6 @@
|
|||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
<!-- <configuration>-->
|
|
||||||
<!-- <layout>ZIP</layout>-->
|
|
||||||
<!-- <includes>-->
|
|
||||||
<!-- <include>-->
|
|
||||||
<!-- <groupId>non-exists</groupId>-->
|
|
||||||
<!-- <artifactId>non-exists</artifactId>-->
|
|
||||||
<!-- </include>-->
|
|
||||||
<!-- </includes>-->
|
|
||||||
<!-- </configuration>-->
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
@@ -132,7 +144,7 @@
|
|||||||
<!-- 将依赖放到target/lib目录下 -->
|
<!-- 将依赖放到target/lib目录下 -->
|
||||||
<outputDirectory>target/lib</outputDirectory>
|
<outputDirectory>target/lib</outputDirectory>
|
||||||
<!-- 排除自身的代码包-->
|
<!-- 排除自身的代码包-->
|
||||||
<!-- <excludeGroupIds>com.cf.imes</excludeGroupIds>-->
|
<excludeGroupIds>com.cf.imes</excludeGroupIds>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|||||||
@@ -161,6 +161,75 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring.boot.version}</version>
|
<version>${spring.boot.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-infra-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-error-code</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-excel</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-file</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-redis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-rpc</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-web</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-websocket</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|||||||
@@ -173,6 +173,91 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring.boot.version}</version>
|
<version>${spring.boot.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-infra-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-prod-executor-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-report-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-data-permission</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-dict</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-error-code</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-elasticsearch</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-excel</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-file</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-redis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-rpc</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-web</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|||||||
@@ -189,6 +189,83 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring.boot.version}</version>
|
<version>${spring.boot.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-infra-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-prod-manage-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-data-permission</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-dict</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-error-code</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-excel</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-file</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-redis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-rpc</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-web</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|||||||
@@ -175,6 +175,65 @@
|
|||||||
<version>${spring.boot.version}</version>
|
<version>${spring.boot.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<includeSystemScope>true</includeSystemScope>
|
<includeSystemScope>true</includeSystemScope>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-infra-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-prod-executor-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-report-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-redis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-rpc</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-web</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|||||||
+1
-1
@@ -151,7 +151,7 @@ public class ReportTemplateController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/template/excel/import")
|
@PostMapping("/template/excel/import")
|
||||||
@Operation(summary = "导入excel模板")
|
@Operation(summary = "导入excel模板")
|
||||||
@PreAuthorize("@ss.hasPermission('report:design')")
|
@PreAuthorize("@ss.hasPermission('report:design')")
|
||||||
public ReportDefinitionWrapper importExcel(@RequestParam("file") MultipartFile file) {
|
public ReportDefinitionWrapper importExcel(@RequestParam("file") MultipartFile file) {
|
||||||
|
|||||||
@@ -213,6 +213,99 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>${spring.boot.version}</version>
|
<version>${spring.boot.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<layout>ZIP</layout>
|
||||||
|
<includes>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-common</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-infra-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-prod-executor-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-module-system-api</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-banner</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-data-permission</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-dict</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-error-code</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-ip</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-biz-sms</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-captcha</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-elasticsearch</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-env</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-excel</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-monitor</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-redis</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-rpc</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||||||
|
</include>
|
||||||
|
<include>
|
||||||
|
<groupId>com.cf.imes</groupId>
|
||||||
|
<artifactId>cf-spring-boot-starter-web</artifactId>
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|||||||
Reference in New Issue
Block a user