<?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>commons</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>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-simple</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-core</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-databind</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger.core.v3</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-webmvc</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-webflux</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>jakarta.servlet</groupId>
|
<artifactId>jakarta.servlet-api</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
</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.apache.maven.plugins</groupId>
|
<artifactId>maven-source-plugin</artifactId>
|
<executions>
|
<execution>
|
<id>attach-sources</id>
|
<goals>
|
<goal>jar</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|