From 88ac4c33e39d4e3bab5a3a4efb10b4d71e2440b5 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 18 四月 2024 14:07:25 +0800 Subject: [PATCH] 阈值管理 --- ycl-server/pom.xml | 37 ++++++++++++++++++++++++++++++++++++- 1 files changed, 36 insertions(+), 1 deletions(-) diff --git a/ycl-server/pom.xml b/ycl-server/pom.xml index 1e5d560..3a4c1b9 100644 --- a/ycl-server/pom.xml +++ b/ycl-server/pom.xml @@ -18,6 +18,19 @@ <dependencies> + <!--netty--> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </dependency> + + + <!-- 浠g爜鐢熸垚--> + <dependency> + <groupId>com.ycl</groupId> + <artifactId>ycl-generator</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> <dependency> <groupId>com.ycl</groupId> <artifactId>ycl-pojo</artifactId> @@ -38,6 +51,7 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> + <!-- 楠岃瘉鐮� --> <dependency> @@ -93,4 +107,25 @@ </dependency> </dependencies> -</project> \ No newline at end of file + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>${spring-boot.version}</version> + <configuration> + <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 --> + </configuration> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <finalName>${project.artifactId}</finalName> + </build> +</project> -- Gitblit v1.8.0