1 Star 0 Fork 101

Vision / 中国交通标准808协议解析二次开发包

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 6.61 KB
一键复制 编辑 原始数据 按行查看 历史
<?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">
<groupId>com.zhoyq</groupId>
<version>1.3.1</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-starter-jt808</artifactId>
<packaging>jar</packaging>
<name>spring-boot-starter-jt808</name>
<description>中交 Jt808 服务 开发依赖(基于SpringBoot注解)</description>
<url>https://github.com/zhoyq/spring-boot-starter-jt808</url>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/zhoyq/spring-boot-starter-jt808/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<name>zhoyq</name>
<email>feedback@zhoyq.com</email>
</developer>
</developers>
<scm>
<tag>master</tag>
<url>https://github.com/zhoyq/spring-boot-starter-jt808.git.git</url>
<connection>scm:git:https://github.com/zhoyq/spring-boot-starter-jt808.git.git</connection>
<developerConnection>scm:git:https://github.com/zhoyq/spring-boot-starter-jt808.git</developerConnection>
</scm>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<relativePath/>
</parent>
<properties>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>15</java.version>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
<lombok.version>1.18.12</lombok.version>
<mina.version>2.1.3</mina.version>
<netty.version>4.1.50.Final</netty.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>${mina.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<javadocExecutable>D:\soft\jdk\zulu8.38.0.13-ca-jdk8.0.212-win_x64\bin\javadoc.exe</javadocExecutable>
<tags>
<tag>
<name>date</name>
<placement>a</placement>
<head>时间:</head>
</tag>
</tags>
<failOnWarnings>false</failOnWarnings>
<source>${java.version}</source>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>logback.xml</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/vision1993/spring-boot-starter-jt808.git
git@gitee.com:vision1993/spring-boot-starter-jt808.git
vision1993
spring-boot-starter-jt808
中国交通标准808协议解析二次开发包
master

搜索帮助