From 73bb5617e6aeb4ee8f7dfd4ad54b61d477969d86 Mon Sep 17 00:00:00 2001 From: whycxzp <glperry@163.com> Date: 星期二, 10 六月 2025 20:22:06 +0800 Subject: [PATCH] 自动充放电自动化流程 --- pom.xml | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 112 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 2863ddf..f7d0d94 100644 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ <optional>true</optional> </dependency> - <dependency> + <!--<dependency> <groupId>com.baomidou</groupId> <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <version>4.3.0</version> @@ -42,6 +42,11 @@ <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> + </dependency>--> + <!--娣诲姞aop--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-aop</artifactId> </dependency> <!--highgo鏁版嵁搴撹繛鎺ユ睜 瀹夊叏鐗圴4.5鐗堟湰鍙婁紒涓氱増V6鍏煎--> <dependency> @@ -49,7 +54,11 @@ <artifactId>HgdbJdbc</artifactId> <version>6.2.3</version> </dependency> - + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>8.0.11</version> + </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> @@ -72,12 +81,22 @@ <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.5</version> </dependency> - <!--mybatis 鍙妋ybatis-plus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.1.2</version> + <exclusions> + <exclusion> + <artifactId>mybatis</artifactId> + <groupId>org.mybatis</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.mybatis</groupId> + <artifactId>mybatis</artifactId> + <version>3.5.3</version> </dependency> <dependency> @@ -96,6 +115,33 @@ <artifactId>druid</artifactId> <version>1.1.10</version> </dependency> + <!--shiro--> + <dependency> + <groupId>org.apache.shiro</groupId> + <artifactId>shiro-spring-boot-web-starter</artifactId> + <version>1.5.3</version> + </dependency> + + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.15</version> + </dependency> + <dependency> + <groupId>com.github.ulisesbocchio</groupId> + <artifactId>jasypt-spring-boot-starter</artifactId> + <version>3.0.4</version> + </dependency> + <dependency> + <groupId>com.github.ben-manes.caffeine</groupId> + <artifactId>caffeine</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <version>5.3.9</version> + </dependency> + <!--<dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-core</artifactId> @@ -115,6 +161,43 @@ <artifactId>commons-lang3</artifactId> <version>3.4</version> </dependency> + <!--<dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>4.1.2</version> + </dependency>--> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>5.2.3</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>5.2.3</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml-full</artifactId> + <version>5.2.3</version> + </dependency> + <!-- OOXML Schemas --> + <dependency> + <groupId>org.apache.xmlbeans</groupId> + <artifactId>xmlbeans</artifactId> + <version>5.1.1</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> + <version>4.4</version> + </dependency> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + <version>2.18.0</version> + </dependency> + <!--澶栭儴寮曞叆-浜鸿劯璇嗗埆sdk--> <dependency> <groupId>org.apache.tomcat.embed</groupId> @@ -124,9 +207,35 @@ <systemPath>${pom.basedir}/src/main/resources/lib/tomcat-embed-core-9.0.30.jar</systemPath> </dependency> <dependency> + <groupId>com.whyc.hik</groupId> + <artifactId>jna</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${pom.basedir}/src/main/resources/lib/hik/jna.jar</systemPath> + </dependency> + <dependency> + <groupId>com.whyc.hik</groupId> + <artifactId>examples</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${pom.basedir}/src/main/resources/lib/hik/examples.jar</systemPath> + </dependency> + <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-logging</artifactId> + <exclusions> + <exclusion> + <!--鎺掗櫎log4j渚濊禆--> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-to-slf4j</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> <build> -- Gitblit v1.9.1