From e4c571831204a0c1418b8184052a9be5e61a3253 Mon Sep 17 00:00:00 2001 From: 赵文轩 <1652863494@qq.com> Date: 星期二, 04 六月 2024 16:05:20 +0800 Subject: [PATCH] 通过接口执行同步、查看日志、清除日志 --- pom.xml | 103 +++++++++++---------------------------------------- 1 files changed, 23 insertions(+), 80 deletions(-) diff --git a/pom.xml b/pom.xml index 16f57be..6117f26 100644 --- a/pom.xml +++ b/pom.xml @@ -1,38 +1,34 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-parent</artifactId> + <version>2.5.14</version> + <relativePath/> + </parent> <groupId>com.example</groupId> <artifactId>ltkj_peis_sjpt</artifactId> <version>0.0.1-SNAPSHOT</version> - <name>imgCheck</name> + <name>ltkj_peis_sjpt</name> + <packaging>war</packaging> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <spring-boot.version>2.6.13</spring-boot.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> - <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.pdfbox</groupId> - <artifactId>pdfbox</artifactId> - <version>2.0.28</version> - </dependency> - <dependency> - <groupId>technology.tabula</groupId> - <artifactId>tabula</artifactId> - <version>1.0.4</version> </dependency> <dependency> <groupId>cn.hutool</groupId> @@ -43,84 +39,31 @@ <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> - <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> - <groupId>org.apache.poi</groupId> - <artifactId>poi</artifactId> - <version>5.2.3</version> - </dependency> - <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> - <dependency> - <groupId>org.apache.poi</groupId> - <artifactId>poi-ooxml</artifactId> - <version>5.2.3</version> - </dependency> - <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf --> - <dependency> - <groupId>com.itextpdf</groupId> - <artifactId>itextpdf</artifactId> - <version>5.5.13.2</version> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> </dependency> <dependency> - <groupId>com.itextpdf</groupId> - <artifactId>itext-asian</artifactId> - <version>5.2.0</version> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> </dependency> - <dependency> - <groupId>com.google.zxing</groupId> - <artifactId>core</artifactId> - <version>3.3.3</version> - </dependency> - <dependency> - <groupId>com.google.zxing</groupId> - <artifactId>javase</artifactId> - <version>3.4.1</version> - </dependency> - - </dependencies> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-dependencies</artifactId> - <version>${spring-boot.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> - </dependencyManagement> <build> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.1</version> - <configuration> - <source>1.8</source> - <target>1.8</target> - <encoding>UTF-8</encoding> - </configuration> - </plugin> - <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> - <version>${spring-boot.version}</version> - <configuration> - <mainClass>com.example.ImgCheckApplication</mainClass> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>repackage</id> - <goals> - <goal>repackage</goal> - </goals> - </execution> - </executions> </plugin> +<!-- <plugin>--> +<!-- <groupId>org.apache.maven.plugins</groupId>--> +<!-- <artifactId>maven-war-plugin</artifactId>--> +<!-- <version>3.2.2</version>--> +<!-- <configuration>--> +<!-- <failOnMissingWebXml>false</failOnMissingWebXml>--> +<!-- </configuration>--> +<!-- </plugin>--> </plugins> + <finalName>ltkj_peis_sjpt</finalName> </build> - </project> -- Gitblit v1.8.0