From 1cad14bca191807e18705c3a5526eda8151be439 Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期一, 14 四月 2025 23:10:22 +0800 Subject: [PATCH] 批量审核和图片保存bug --- ycl-smoke/pom.xml | 43 +++++++++++++++++++++++++++++++++---------- 1 files changed, 33 insertions(+), 10 deletions(-) diff --git a/ycl-smoke/pom.xml b/ycl-smoke/pom.xml index ca9d4e9..aa8e8b2 100644 --- a/ycl-smoke/pom.xml +++ b/ycl-smoke/pom.xml @@ -30,13 +30,23 @@ <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>com.ycl</groupId> - <artifactId>ycl-generator</artifactId> - <version>1.0.0</version> - <scope>compile</scope> - </dependency> +<!-- <dependency>--> +<!-- <groupId>com.ycl</groupId>--> +<!-- <artifactId>ycl-generator</artifactId>--> +<!-- <version>1.0.0</version>--> +<!-- <scope>compile</scope>--> +<!-- </dependency>--> </dependencies> + + <!-- <build>--> + <!-- <finalName>ycl-smoke</finalName>--> + <!-- <plugins>--> + <!-- <plugin>--> + <!-- <groupId>org.springframework.boot</groupId>--> + <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> + <!-- </plugin>--> + <!-- </plugins>--> + <!-- </build>--> <build> <plugins> @@ -53,6 +63,7 @@ <artifactId>nothing</artifactId> </include> </includes> + <includeSystemScope>true</includeSystemScope> </configuration> </plugin> @@ -83,7 +94,6 @@ </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -92,7 +102,7 @@ <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> - <version>1.18.20</version> + <version>1.18.22</version> </path> </annotationProcessorPaths> @@ -104,8 +114,21 @@ </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.2</version> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <classpathPrefix>lib/</classpathPrefix> + <!-- <mainClass>your.class</mainClass>--> + </manifest> + </archive> + </configuration> + </plugin> </plugins> </build> - - </project> -- Gitblit v1.8.0