You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.0 KiB
XML
90 lines
3.0 KiB
XML
1 year 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 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>2.5.6</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
<groupId>com.shxy</groupId>
|
||
|
<artifactId>xyhkcamera</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>xyhkcamera</name>
|
||
|
<description>Demo project for Spring Boot</description>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<spring-boot-dependencies.version>2.5.6</spring-boot-dependencies.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<!-- SpringBoot的依赖配置-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
<version>${spring-boot-dependencies.version}</version>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.sun.jna</groupId>
|
||
|
<artifactId>examples</artifactId>
|
||
|
<version>1.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--lombok-->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--jna-->
|
||
|
<dependency>
|
||
|
<groupId>com.sun.jna</groupId>
|
||
|
<artifactId>jna</artifactId>
|
||
|
<version>3.0.9</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 引入log4j2依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-logging</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|