<?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>com.doumee</groupId>
|
<artifactId>jtt808_parent</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<version>1.0.0-SNAPSHOT</version>
|
<artifactId>jtt808-server</artifactId>
|
<packaging>jar</packaging>
|
<dependencies>
|
<!-- <dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-openapi3-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.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>-->
|
<!-- <dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jetty</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-el</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>jakarta.websocket</groupId>
|
<artifactId>jakarta.websocket-api</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
<artifactId>websocket-server</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
<artifactId>javax-websocket-server-impl</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>-->
|
|
<!-- <dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-typehandlers-jsr310</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>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</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>com.doumee</groupId>
|
<artifactId>jtt808-protocol</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.doumee</groupId>
|
<artifactId>services</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</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>
|