<?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>
|
<artifactId>common</artifactId>
|
<groupId>com.mes</groupId>
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>servicebase</artifactId>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>mssql-jdbc</artifactId>
|
<version>6.4.0.jre8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.liquibase</groupId>
|
<artifactId>liquibase-core</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.eclipse.milo</groupId>
|
<artifactId>sdk-client</artifactId>
|
<version>0.6.8</version>
|
</dependency>
|
<dependency>
|
<groupId>org.eclipse.milo</groupId>
|
<artifactId>sdk-server</artifactId>
|
<version>0.6.8</version>
|
</dependency>
|
<dependency>
|
<groupId>com.kangaroohy</groupId>
|
<artifactId>milo-spring-boot-starter</artifactId>
|
<version>3.0.6.12</version>
|
</dependency>
|
|
|
</dependencies>
|
<build>
|
<resources>
|
<resource>
|
<!-- 源资源目录(默认是 src/main/resources) -->
|
<directory>src/main/resources</directory>
|
<!-- 排除 i18n 文件夹及其所有内容 -->
|
<excludes>
|
<exclude>i18n/**/*</exclude> <!-- **表示递归匹配所有子目录,*表示所有文件 -->
|
</excludes>
|
</resource>
|
</resources>
|
</build>
|
</project>
|