You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 5.4 kB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.github.yitter</groupId>
  7. <artifactId>yitter-idgenerator</artifactId>
  8. <version>1.0.7-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>yitter-idgenerator</name>
  11. <description>Shorter ID and faster generation with a new snowflake drift algorithm. The core is to shorten the ID
  12. length, but also can have a very high instantaneous concurrent processing capacity (50W/0.1s), and powerful
  13. configuration capacity.
  14. </description>
  15. <url>https://github.com/yitter/idgenerator</url>
  16. <developers>
  17. <developer>
  18. <id>yitter</id>
  19. <name>yitter</name>
  20. <email>yitter@126.com</email>
  21. <url>https://github.com/yitter/idgenerator</url>
  22. </developer>
  23. </developers>
  24. <scm>
  25. <connection>scm:git:https://github.com/yitter/idgenerator.git</connection>
  26. <developerConnection>scm:git:https://github.com/yitter/idgenerator.git</developerConnection>
  27. <url>https://github.com/yitter/idgenerator.git</url>
  28. </scm>
  29. <licenses>
  30. <license>
  31. <name>MIT</name>
  32. <url>https://github.com/yitter/IdGenerator/blob/main/LICENSE</url>
  33. </license>
  34. </licenses>
  35. <properties>
  36. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  37. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  38. <maven.compiler.source>11</maven.compiler.source>
  39. <maven.compiler.target>11</maven.compiler.target>
  40. <java.version>11</java.version>
  41. </properties>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.openjdk.jmh</groupId>
  45. <artifactId>jmh-core</artifactId>
  46. <version>1.21</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.openjdk.jmh</groupId>
  51. <artifactId>jmh-generator-annprocess</artifactId>
  52. <version>1.35</version>
  53. <scope>provided</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-source-plugin</artifactId>
  61. <version>2.2.1</version>
  62. <executions>
  63. <execution>
  64. <phase>package</phase>
  65. <goals>
  66. <goal>jar-no-fork</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-javadoc-plugin</artifactId>
  74. <version>3.0.1</version>
  75. <executions>
  76. <execution>
  77. <phase>package</phase>
  78. <goals>
  79. <goal>jar</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-gpg-plugin</artifactId>
  87. <version>1.5</version>
  88. <executions>
  89. <execution>
  90. <phase>verify</phase>
  91. <goals>
  92. <goal>sign</goal>
  93. </goals>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.sonatype.plugins</groupId>
  99. <artifactId>nexus-staging-maven-plugin</artifactId>
  100. <version>1.6.8</version>
  101. <extensions>true</extensions>
  102. <configuration>
  103. <serverId>ossrh</serverId>
  104. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  105. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-compiler-plugin</artifactId>
  111. <version>3.8.1</version>
  112. <configuration>
  113. <fork>true</fork>
  114. <source>${java.version}</source>
  115. <target>${java.version}</target>
  116. <encoding>UTF-8</encoding>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-jar-plugin</artifactId>
  122. <version>3.1.0</version>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. <distributionManagement>
  127. <snapshotRepository>
  128. <id>ossrh</id>
  129. <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
  130. </snapshotRepository>
  131. <repository>
  132. <id>ossrh</id>
  133. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  134. </repository>
  135. </distributionManagement>
  136. </project>