Skip to content

Commit 16c54ed

Browse files
committed
添加ApiBoot Sequence Starter项目
1 parent eb9dbbf commit 16c54ed

File tree

2 files changed

+46
-0
lines changed
  • api-boot-project/api-boot-starters

2 files changed

+46
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>api-boot-starters</artifactId>
7+
<groupId>org.minbox.framework</groupId>
8+
<version>${revision}</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
<packaging>jar</packaging>
12+
<artifactId>api-boot-starter-sequence</artifactId>
13+
<properties>
14+
<main.basedir>${basedir}/../../..</main.basedir>
15+
</properties>
16+
<description>
17+
分布式高效ID算法集成,基于Twitter的Snowflake("雪花算法")算法实现分布式高效有序ID生产黑科技
18+
19+
Distributed efficient ID algorithm integration,
20+
based on Twitter's Snowflake algorithm to achieve distributed efficient and orderly ID production black
21+
technology.
22+
23+
See more details:https://gitee.com/yu120/sequence
24+
</description>
25+
<developers>
26+
<developer>
27+
<name>恒宇少年</name>
28+
<organization>minbox-projects</organization>
29+
<url>https://blog.yuqiyu.com</url>
30+
<email>jnyuqy@gmail.com</email>
31+
</developer>
32+
</developers>
33+
<dependencies>
34+
<!--ApiBoot Starter-->
35+
<dependency>
36+
<groupId>org.minbox.framework</groupId>
37+
<artifactId>api-boot-starter</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.minbox.framework</groupId>
41+
<artifactId>api-boot-plugin-sequence</artifactId>
42+
</dependency>
43+
</dependencies>
44+
45+
</project>

api-boot-project/api-boot-starters/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<module>api-boot-starter-mail</module>
3232
<module>api-boot-starter-logging</module>
3333
<module>api-boot-starter-logging-admin</module>
34+
<module>api-boot-starter-sequence</module>
3435
</modules>
3536

3637
</project>

0 commit comments

Comments
 (0)