1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.github.zrdj</groupId >
8+ <artifactId >java-identifiers</artifactId >
9+ <version >0.1.0</version >
10+
11+ <properties >
12+ <maven .compiler.source>11</maven .compiler.source>
13+ <maven .compiler.target>11</maven .compiler.target>
14+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15+ </properties >
16+
17+ <build >
18+ <plugins >
19+ <plugin >
20+ <groupId >org.apache.maven.plugins</groupId >
21+ <artifactId >maven-compiler-plugin</artifactId >
22+ <version >3.12.1</version >
23+ <configuration >
24+ <source >${maven.compiler.source} </source >
25+ <target >${maven.compiler.target} </target >
26+ </configuration >
27+ </plugin >
28+ <!-- Sources -->
29+ <plugin >
30+ <groupId >org.apache.maven.plugins</groupId >
31+ <artifactId >maven-source-plugin</artifactId >
32+ <version >3.3.0</version >
33+ <executions >
34+ <execution >
35+ <id >attach-sources</id >
36+ <goals >
37+ <goal >jar-no-fork</goal >
38+ </goals >
39+ </execution >
40+ </executions >
41+ </plugin >
42+
43+ <!-- Javadoc -->
44+ <plugin >
45+ <groupId >org.apache.maven.plugins</groupId >
46+ <artifactId >maven-javadoc-plugin</artifactId >
47+ <version >3.6.3</version >
48+ <executions >
49+ <execution >
50+ <id >attach-javadocs</id >
51+ <goals >
52+ <goal >jar</goal >
53+ </goals >
54+ </execution >
55+ </executions >
56+ </plugin >
57+
58+ </plugins >
59+ </build >
60+
61+ <dependencies >
62+ <dependency >
63+ <groupId >com.github.f4b6a3</groupId >
64+ <artifactId >uuid-creator</artifactId >
65+ <version >5.3.7</version >
66+ </dependency >
67+ <dependency >
68+ <groupId >com.github.f4b6a3</groupId >
69+ <artifactId >ulid-creator</artifactId >
70+ <version >5.2.3</version >
71+ </dependency >
72+ <dependency >
73+ <groupId >com.github.f4b6a3</groupId >
74+ <artifactId >tsid-creator</artifactId >
75+ <version >5.2.6</version >
76+ </dependency >
77+ <dependency >
78+ <groupId >com.github.f4b6a3</groupId >
79+ <artifactId >ksuid-creator</artifactId >
80+ <version >4.1.1</version >
81+ </dependency >
82+ </dependencies >
83+
84+
85+ </project >
0 commit comments