You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
4.4 KiB
136 lines
4.4 KiB
<?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">
|
|
|
|
<parent>
|
|
<groupId>com.haidapu.jtserver</groupId>
|
|
<artifactId>jtserver-boot</artifactId>
|
|
<version>1.3.2.RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>com.haidapu.jtserver</groupId>
|
|
<artifactId>jtserver-core</artifactId>
|
|
<version>1.3.2</version>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
<name>jtserver-core</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>
|
|
|
|
<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>1.8</java.version>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</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>
|
|
<junit.version>4.13.2</junit.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>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<!-- 开发环境 -->
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<spring.profiles.active>dev</spring.profiles.active>
|
|
</properties>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<!-- 测试环境 -->
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<spring.profiles.active>test</spring.profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<!-- 生产环境 -->
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<spring.profiles.active>prod</spring.profiles.active>
|
|
</properties>
|
|
</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>
|