<?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>
|
|
<groupId>com.fgkj</groupId>
|
<artifactId>BattMonitor_A200</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</properties>
|
|
<dependencies>
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.12.RELEASE</version>
|
<type>pom</type>
|
</dependency>
|
<!--CloseableHttpClient-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.13</version>
|
</dependency>
|
|
<!--spring restTemplate-->
|
<!-- @ConfigurationProperties annotation processing (metadata for IDEs)
|
生成spring-configuration-metadata.json类,需要引入此类-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<version>2.2.0.RELEASE</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
<version>2.1.12.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<version>2.2.0.RELEASE</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<version>2.2.0.RELEASE</version>
|
<scope>test</scope>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2</artifactId>
|
<version>2.0.52</version>
|
</dependency>
|
|
<!--mybatis 依赖-->
|
<!--<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.5.5</version>
|
</dependency>-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.7</version>
|
</dependency>
|
|
<!--mysql 依赖-->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>5.1.49</version>
|
</dependency>
|
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.13.2</version>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.34</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.jboss</groupId>
|
<artifactId>jboss-vfs</artifactId>
|
<version>3.2.15.Final</version>
|
</dependency>
|
</dependencies>
|
|
</project>
|