1c3f6ac2ec
Upgrade to v1.1.0 stable version, and the translation of SIMPLIFIED CHINESE will be published before 26 Sept, 2023. BREAKING CHANGE: The order of parametres in initialising SnowflakeGuidCreator, the original sequence is: "workerId, dataCentreId"; and the new sequence is "dataCentreId, workerId"
27 lines
913 B
XML
27 lines
913 B
XML
<?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>cn.org.codecrafters</groupId>
|
|
<artifactId>jdevkit</artifactId>
|
|
<version>1.1.0</version>
|
|
</parent>
|
|
|
|
<artifactId>devkit-utils</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>cn.org.codecrafters</groupId>
|
|
<artifactId>devkit-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |