微耕门禁对外接口程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
5.3 KiB

2 years ago
<?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 http://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.7.13</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.cjy</groupId>
<artifactId>access-control-equipment</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-bom</artifactId>
<version>5.8.17</version>
<type>pom</type>
<!-- 注意这里是import -->
<scope>import</scope>
</dependency>
<dependency>
<groupId>httpClient</groupId>
<artifactId>httpClient</artifactId>
<version>5.1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/httpclient5-5.1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>httpClient-cache</groupId>
<artifactId>httpClient-cache</artifactId>
<version>5.1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/httpclient5-cache-5.1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>httpClient-fluent</groupId>
<artifactId>httpClient-fluent</artifactId>
<version>5.1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/httpclient5-fluent-5.1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>httpcore</groupId>
<artifactId>httpcore</artifactId>
<version>5.1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/httpcore5-5.1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>jackson-annotations</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.13.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jackson-annotations-2.13.0-rc2.jar</systemPath>
</dependency>
<dependency>
<groupId>jackson-core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jackson-core-2.13.0-rc2.jar</systemPath>
</dependency>
<dependency>
<groupId>jackson-databind</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jackson-databind-2.13.2.2.jar</systemPath>
</dependency>
<dependency>
<groupId>java-webSocket</groupId>
<artifactId>java-webSocket</artifactId>
<version>1.5.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Java-WebSocket-1.5.3.jar</systemPath>
</dependency>
<dependency>
<groupId>slf4j-api</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/slf4j-api-2.0.0-alpha7.jar</systemPath>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
2 years ago
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
2 years ago
<resource>
<directory>lib</directory>
<targetPath>/BOOT-INF/lib/</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
2 years ago
</configuration>
</plugin>
</plugins>
</build>
</project>