<?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"
|
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>3.5.10</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.zy</groupId>
|
<artifactId>wcs</artifactId>
|
<version>1.0.0</version>
|
<packaging>war</packaging>
|
|
<properties>
|
<java.version>17</java.version>
|
<maven.compiler.release>${java.version}</maven.compiler.release>
|
<mybatis-plus.version>3.5.14</mybatis-plus.version>
|
<fastjson.version>1.2.83</fastjson.version>
|
<ortools.version>9.10.4067</ortools.version>
|
<lombok.version>1.18.38</lombok.version>
|
<mssql-jdbc.version>12.10.0.jre11</mssql-jdbc.version>
|
<swagger-annotations.version>1.6.16</swagger-annotations.version>
|
<springdoc.version>2.8.9</springdoc.version>
|
<spring-ai.version>1.1.2</spring-ai.version>
|
</properties>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.ai</groupId>
|
<artifactId>spring-ai-bom</artifactId>
|
<version>${spring-ai.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<!--<dependency>-->
|
<!--<groupId>org.springframework.boot</groupId>-->
|
<!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
|
<!--<scope>provided</scope>-->
|
<!--</dependency>-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.mysql</groupId>
|
<artifactId>mysql-connector-j</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>mssql-jdbc</artifactId>
|
<version>${mssql-jdbc.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
<version>${mybatis-plus.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springdoc</groupId>
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
<version>${springdoc.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>${swagger-annotations.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.3.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.0.5</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.github.dathlin</groupId>
|
<artifactId>HslCommunication</artifactId>
|
<version>2.0.0</version>
|
</dependency>
|
<!-- okHttp3 -->
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.10.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.13</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.13</version>
|
</dependency>
|
<dependency>
|
<groupId>de.schlichtherle.truelicense</groupId>
|
<artifactId>truelicense-core</artifactId>
|
<version>1.33</version>
|
</dependency>
|
<!-- WebClient -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.ai</groupId>
|
<artifactId>spring-ai-openai</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.google.ortools</groupId>
|
<artifactId>ortools-java</artifactId>
|
<version>${ortools.version}</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>wcs</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<release>${maven.compiler.release}</release>
|
<annotationProcessorPaths>
|
<path>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>${lombok.version}</version>
|
</path>
|
</annotationProcessorPaths>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-war-plugin</artifactId>
|
<configuration>
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
</configuration>
|
<!-- <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>
|
|
</project>
|