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.
84 lines
2.4 KiB
84 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-modules</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>micro-leaf</artifactId>
|
|
|
|
<description>
|
|
基于美团Leaf分布式ID生成系统
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-nacos</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-web</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-leaf</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Micro Common Security-->
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-security</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-logmark</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-api-leaf</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>micro-common-feign</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-loadbalancer</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>
|
|
|