微耕门禁对外接口程序
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.

162 lines
6.4 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>
2 years ago
<artifactId>spring-boot-starter</artifactId>
2 years ago
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2 years ago
<artifactId>spring-boot-starter-web</artifactId>
2 years ago
</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>
2 years ago
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-bom</artifactId>
<version>5.8.18</version>
<!-- 加不加这句都能跑,区别只有是否告警 -->
<type>pom</type>
<exclusions>
<exclusion>
<groupId>cn.hutool</groupId>
<artifactId>hutool-system</artifactId>
</exclusion>
<exclusion>
<groupId>cn.hutool</groupId>
<artifactId>hutool-aop</artifactId>
</exclusion>
<exclusion>
<groupId>cn.hutool</groupId>
<artifactId>hutool-cron</artifactId>
</exclusion>
</exclusions>
</dependency>
2 years ago
<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>
2 years ago
<!-- <resource>-->
<!-- <directory>lib</directory>-->
<!-- <targetPath>/BOOT-INF/lib/</targetPath>-->
<!-- <includes>-->
<!-- <include>**/*.jar</include>-->
<!-- </includes>-->
2 years ago
<!-- </resource>-->
2 years ago
<resource>
<directory>src/main/resources</directory>
2 years ago
<includes>
<include>**/*.yml</include>
2 years ago
</includes>
<filtering>false</filtering>
2 years ago
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
2 years ago
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
<!-- 将system本地包一起打入包中 -->
<includeSystemScope>true</includeSystemScope>
<fork>true</fork>
2 years ago
</configuration>
</plugin>
</plugins>
</build>
</project>