<?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.yzh</groupId>
|
<artifactId>jtt808-parent</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>jtt808-server</artifactId>
|
<packaging>jar</packaging>
|
|
<url>https://gitee.com/yezhihao/jt808-server</url>
|
<licenses>
|
<license>
|
<name>The Apache Software License, Version 2.0</name>
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
</license>
|
</licenses>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>*</groupId>
|
<artifactId>*</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-el</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-websocket</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.mariadb.jdbc</groupId>
|
<artifactId>mariadb-java-client</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.h2database</groupId>
|
<artifactId>h2</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.zaxxer</groupId>
|
<artifactId>HikariCP</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.yzh</groupId>
|
<artifactId>jtt808-protocol</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>org.yzh</groupId>
|
<artifactId>commons</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.30</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<parameters>true</parameters>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<excludes>
|
<exclude>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</exclude>
|
</excludes>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.mybatis.generator</groupId>
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
<version>1.4.2</version>
|
<configuration>
|
<verbose>true</verbose>
|
<overwrite>true</overwrite>
|
<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
|
</configuration>
|
<dependencies>
|
<dependency>
|
<groupId>org.mariadb.jdbc</groupId>
|
<artifactId>mariadb-java-client</artifactId>
|
<version>${mariadb.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.h2database</groupId>
|
<artifactId>h2</artifactId>
|
<version>${h2.version}</version>
|
</dependency>
|
</dependencies>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|