配送系统功能开发1205
This commit is contained in:
51
pom.xml
51
pom.xml
@@ -34,12 +34,21 @@
|
||||
<poi.version>4.1.2</poi.version>
|
||||
<oshi.version>6.8.3</oshi.version>
|
||||
<velocity.version>2.3</velocity.version>
|
||||
|
||||
<!-- override dependency version -->
|
||||
<tomcat.version>9.0.108</tomcat.version>
|
||||
<logback.version>1.2.13</logback.version>
|
||||
<spring-security.version>5.7.14</spring-security.version>
|
||||
<spring-framework.version>5.3.39</spring-framework.version>
|
||||
<minio.version>7.1.4</minio.version>
|
||||
|
||||
<!-- ======= 阿里云 OCR SDK 统一版本管理 ======= -->
|
||||
<aliyun.ocr.version>3.1.0</aliyun.ocr.version>
|
||||
|
||||
<!-- 确保编译使用UTF-8编码 -->
|
||||
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -180,7 +189,7 @@
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
||||
<!-- 防止进入swagger页面报类型转换错误 -->
|
||||
<dependency>
|
||||
<groupId>io.swagger</groupId>
|
||||
<artifactId>swagger-models</artifactId>
|
||||
@@ -239,12 +248,45 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>1.18.38</version>
|
||||
</dependency>
|
||||
|
||||
<!-- ===== 阿里云 OCR SDK(统一版本管理) ===== -->
|
||||
<dependency>
|
||||
<groupId>com.aliyun</groupId>
|
||||
<artifactId>ocr_api20210707</artifactId>
|
||||
<version>${aliyun.ocr.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Google Zxing 条形码识别 -->
|
||||
<dependency>
|
||||
<groupId>com.google.zxing</groupId>
|
||||
<artifactId>core</artifactId>
|
||||
<version>3.5.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.zxing</groupId>
|
||||
<artifactId>javase</artifactId>
|
||||
<version>3.5.3</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 阿里云通义千问VL模型SDK -->
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>dashscope-sdk-java</artifactId>
|
||||
<version>2.16.2</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-simple</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -253,13 +295,6 @@
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<!-- 如有自定义 mainClass,请在这里配置;默认可省略 -->
|
||||
<!--
|
||||
<configuration>
|
||||
<mainClass>com.delivery.DeliveryApplication</mainClass>
|
||||
<fork>true</fork>
|
||||
</configuration>
|
||||
-->
|
||||
<configuration>
|
||||
<fork>true</fork>
|
||||
</configuration>
|
||||
|
||||
Reference in New Issue
Block a user