fz共享服务
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.

132 lines
3.9 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sinosoft</groupId>
<artifactId>micro-visual</artifactId>
<version>${revision}</version>
</parent>
<artifactId>micro-xxljob</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-nacos</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-sentinel</artifactId>
</dependency>
<!-- Micro Common Log -->
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-log</artifactId>
</dependency>
<!-- 日志标记 -->
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-logmark</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-doc</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-web</artifactId>
<exclusions>
<exclusion>
<groupId>com.sinosoft</groupId>
<artifactId>micro-api-system</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-mybatis</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-feign</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-loadbalancer</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-tenant</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-security</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-encrypt</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-web</artifactId>
</dependency>
<dependency>
<groupId>com.sinosoft</groupId>
<artifactId>micro-common-job</artifactId>
</dependency>
<!-- freemarker-starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>