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.0 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
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.6</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>1.8</maven.compiler.source>
  39. <maven.compiler.target>1.8</maven.compiler.target>
  40. <java.version>1.8</java.version>
  41. </properties>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-source-plugin</artifactId>
  47. <version>2.2.1</version>
  48. <executions>
  49. <execution>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>jar-no-fork</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-javadoc-plugin</artifactId>
  60. <version>3.0.1</version>
  61. <executions>
  62. <execution>
  63. <phase>package</phase>
  64. <goals>
  65. <goal>jar</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-gpg-plugin</artifactId>
  73. <version>1.5</version>
  74. <executions>
  75. <execution>
  76. <phase>verify</phase>
  77. <goals>
  78. <goal>sign</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.sonatype.plugins</groupId>
  85. <artifactId>nexus-staging-maven-plugin</artifactId>
  86. <version>1.6.8</version>
  87. <extensions>true</extensions>
  88. <configuration>
  89. <serverId>ossrh</serverId>
  90. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  91. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-compiler-plugin</artifactId>
  97. <version>3.8.1</version>
  98. <configuration>
  99. <fork>true</fork>
  100. <source>${java.version}</source>
  101. <target>${java.version}</target>
  102. <encoding>UTF-8</encoding>
  103. </configuration>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.apache.maven.plugins</groupId>
  107. <artifactId>maven-jar-plugin</artifactId>
  108. <version>3.1.0</version>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. <distributionManagement>
  113. <snapshotRepository>
  114. <id>ossrh</id>
  115. <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
  116. </snapshotRepository>
  117. <repository>
  118. <id>ossrh</id>
  119. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  120. </repository>
  121. </distributionManagement>
  122. </project>