From 7e1e714c49a20468fcc7c7c37d4f65142abb2528 Mon Sep 17 00:00:00 2001 From: Junjie <540245094@qq.com> Date: 星期二, 20 五月 2025 11:19:12 +0800 Subject: [PATCH] #电视机增加批号 --- pom.xml | 62 ++++++++++++++++++++++++++++++- 1 files changed, 60 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f3426a9..0509294 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ <properties> <java.version>1.8</java.version> - <cool.version>1.1.1</cool.version> + <cool.version>3.2.0</cool.version> <mysql-driver.version>5.1.47</mysql-driver.version> <mybatis-plus.version>2.3.2</mybatis-plus.version> <fastjson.version>1.2.58</fastjson.version> @@ -128,10 +128,38 @@ </dependency> <dependency> <groupId>com.wcs.led</groupId> + <artifactId>rxtx</artifactId> + <scope>system</scope> + <version>2.1.7</version> + <systemPath>${project.basedir}/src/main/resources/lib/rxtx-2.1.7.jar</systemPath> + </dependency> + <dependency> + <groupId>com.wcs.led</groupId> <artifactId>simple-xml</artifactId> <scope>system</scope> <version>2.7.1</version> <systemPath>${project.basedir}/src/main/resources/lib/simple-xml-2.7.1.jar</systemPath> + </dependency> + <dependency> + <groupId>com.wcs.led</groupId> + <artifactId>stax</artifactId> + <scope>system</scope> + <version>1.2.0</version> + <systemPath>${project.basedir}/src/main/resources/lib/stax-1.2.0.jar</systemPath> + </dependency> + <dependency> + <groupId>com.wcs.led</groupId> + <artifactId>stax-api</artifactId> + <scope>system</scope> + <version>1.0.1</version> + <systemPath>${project.basedir}/src/main/resources/lib/stax-api-1.0.1.jar</systemPath> + </dependency> + <dependency> + <groupId>com.wcs.led</groupId> + <artifactId>uia-comm</artifactId> + <scope>system</scope> + <version>0.5.1</version> + <systemPath>${project.basedir}/src/main/resources/lib/uia-comm-0.5.1.jar</systemPath> </dependency> <dependency> <groupId>com.wcs.led</groupId> @@ -140,14 +168,44 @@ <version>0.6.0</version> <systemPath>${project.basedir}/src/main/resources/lib/uia-message-0.6.0.jar</systemPath> </dependency> + <dependency> + <groupId>com.wcs.led</groupId> + <artifactId>uia-utils</artifactId> + <scope>system</scope> + <version>0.2.0</version> + <systemPath>${project.basedir}/src/main/resources/lib/uia-utils-0.2.0.jar</systemPath> + </dependency> + <dependency> + <groupId>com.wcs.led</groupId> + <artifactId>xpp3</artifactId> + <scope>system</scope> + <version>1.1.3.3</version> + <systemPath>${project.basedir}/src/main/resources/lib/xpp3-1.1.3.3.jar</systemPath> + </dependency> </dependencies> <build> - <finalName>gdwcs</finalName> + <finalName>mdqdwcs</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <version>2.1.3.RELEASE</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <webResources> + <resource> + <directory>src/main/resources/lib</directory> + <targetPath>WEB-INF/lib/</targetPath> + <includes> + <include>**/*.jar</include> + </includes> + </resource> + </webResources> + </configuration> </plugin> </plugins> </build> -- Gitblit v1.9.1