pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>com.fdkankan</groupId>
  8. <artifactId>4dkankan-parent</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.fdkankan</groupId>
  13. <artifactId>4dkankan-common</artifactId>
  14. <!-- <repositories>-->
  15. <!-- <repository>-->
  16. <!-- <id>releases</id>-->
  17. <!-- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>-->
  18. <!-- </repository>-->
  19. <!-- <repository>-->
  20. <!-- <id>nexus-aliyun</id>-->
  21. <!-- <url>http://maven.aliyun.com/nexus/content/groups/public</url>-->
  22. <!-- </repository>-->
  23. <!-- </repositories>-->
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.hutool</groupId>
  31. <artifactId>hutool-all</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>servlet-api</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-webflux</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>fastjson</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.ant</groupId>
  48. <artifactId>ant</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>joinery</groupId>
  52. <artifactId>jave</artifactId>
  53. <version>1.0.2.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.bytedeco</groupId>
  57. <artifactId>javacpp</artifactId>
  58. <version>1.4.3</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.bytedeco</groupId>
  62. <artifactId>javacv-platform</artifactId>
  63. <version>1.4.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-spring</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.auth0</groupId>
  71. <artifactId>java-jwt</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.jsonwebtoken</groupId>
  75. <artifactId>jjwt</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-webmvc</artifactId>
  84. <version>5.3.13</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba.rocketmq</groupId>
  88. <artifactId>rocketmq-common</artifactId>
  89. <version>3.6.2.Final</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.rocketmq</groupId>
  93. <artifactId>rocketmq-client</artifactId>
  94. <version>4.5.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>mybatis-plus-boot-starter</artifactId>
  99. <version>3.4.3.4</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>joda-time</groupId>
  103. <artifactId>joda-time</artifactId>
  104. <version>2.9.9</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.aliyun</groupId>
  108. <artifactId>aliyun-java-sdk-core</artifactId>
  109. <version>4.0.3</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.aliyun</groupId>
  113. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  114. <version>1.1.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.amazonaws</groupId>
  118. <artifactId>aws-java-sdk</artifactId>
  119. <version>1.11.327</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.sun.mail</groupId>
  123. <artifactId>javax.mail</artifactId>
  124. <version>1.5.4</version>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. <distributionManagement>
  136. <repository>
  137. <!-- 这里的ID要和setting的id一致 -->
  138. <id>releases</id>
  139. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  140. </repository>
  141. <!--这是打成快照版本的配置 -->
  142. <snapshotRepository>
  143. <id>snapshots</id>
  144. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  145. </snapshotRepository>
  146. </distributionManagement>
  147. </project>