1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+ <groupId >io.azam.ulidj</groupId >
5
+ <artifactId >ulidj</artifactId >
6
+ <version >1.0.0</version >
7
+ <name >ulidj</name >
8
+ <description >ULID (Universally Unique Lexicographically Sortable Identifier) generator and parser for Java.</description >
9
+ <url >https://github.com/azam/ulidj</url >
10
+ <licenses >
11
+ <license >
12
+ <name >The MIT License (MIT)</name >
13
+ <url >http://opensource.org/licenses/MIT</url >
14
+ <distribution >repo</distribution >
15
+ </license >
16
+ </licenses >
17
+ <scm >
18
+ <url >https://github.com/azam/ulidj</url >
19
+ <developerConnection >azam</developerConnection >
20
+ </scm >
21
+ <developers >
22
+ <developer >
23
+ <id >1</id >
24
+ <name >azam</name >
25
+
26
+ <organization >azam.io</organization >
27
+ <organizationUrl >http://azam.io</organizationUrl >
28
+ <roles >
29
+ <role >Geek</role >
30
+ </roles >
31
+ <timezone >+9</timezone >
32
+ </developer >
33
+ </developers >
34
+ <issueManagement >
35
+ <system >GitHub</system >
36
+ <url >https://github.com/azam/ulidj/issues</url >
37
+ </issueManagement >
38
+ <organization >
39
+ <name >azam</name >
40
+ <url >http://azam.io</url >
41
+ </organization >
42
+ <properties >
43
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
44
+ </properties >
45
+ <dependencies >
46
+ <dependency >
47
+ <groupId >junit</groupId >
48
+ <artifactId >junit</artifactId >
49
+ <version >4.12</version >
50
+ <scope >test</scope >
51
+ </dependency >
52
+ </dependencies >
53
+ <distributionManagement >
54
+ <snapshotRepository >
55
+ <id >ossrh</id >
56
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
57
+ </snapshotRepository >
58
+ <repository >
59
+ <id >ossrh</id >
60
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
61
+ </repository >
62
+ </distributionManagement >
63
+ <profiles >
64
+ <profile >
65
+ <id >release</id >
66
+ <activation >
67
+ <activeByDefault >false</activeByDefault >
68
+ </activation >
69
+ <properties >
70
+ <gpg .executable>${env.GPG_EXECUTABLE} </gpg .executable>
71
+ <gpg .passphrase>${env.GPG_PASSPHRASE} </gpg .passphrase>
72
+ </properties >
73
+ <build >
74
+ <plugins >
75
+ <plugin >
76
+ <groupId >org.apache.maven.plugins</groupId >
77
+ <artifactId >maven-compiler-plugin</artifactId >
78
+ <version >3.6.0</version >
79
+ <configuration >
80
+ <source >1.7</source >
81
+ <target >1.7</target >
82
+ </configuration >
83
+ </plugin >
84
+ <plugin >
85
+ <groupId >org.apache.maven.plugins</groupId >
86
+ <artifactId >maven-source-plugin</artifactId >
87
+ <version >3.0.1</version >
88
+ <executions >
89
+ <execution >
90
+ <id >attach-sources</id >
91
+ <goals >
92
+ <goal >jar-no-fork</goal >
93
+ </goals >
94
+ </execution >
95
+ </executions >
96
+ </plugin >
97
+ <plugin >
98
+ <groupId >org.apache.maven.plugins</groupId >
99
+ <artifactId >maven-javadoc-plugin</artifactId >
100
+ <version >2.10.4</version >
101
+ <executions >
102
+ <execution >
103
+ <id >attach-javadocs</id >
104
+ <goals >
105
+ <goal >jar</goal >
106
+ </goals >
107
+ </execution >
108
+ </executions >
109
+ </plugin >
110
+ <plugin >
111
+ <groupId >org.apache.maven.plugins</groupId >
112
+ <artifactId >maven-gpg-plugin</artifactId >
113
+ <version >1.6</version >
114
+ <executions >
115
+ <execution >
116
+ <id >sign-artifacts</id >
117
+ <phase >verify</phase >
118
+ <goals >
119
+ <goal >sign</goal >
120
+ </goals >
121
+ </execution >
122
+ </executions >
123
+ </plugin >
124
+ <plugin >
125
+ <groupId >org.sonatype.plugins</groupId >
126
+ <artifactId >nexus-staging-maven-plugin</artifactId >
127
+ <version >1.6.6</version >
128
+ <extensions >true</extensions >
129
+ <configuration >
130
+ <serverId >ossrh</serverId >
131
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
132
+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
133
+ </configuration >
134
+ </plugin >
135
+ </plugins >
136
+ </build >
137
+ </profile >
138
+ </profiles >
139
+ </project >
0 commit comments