pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-compiler-plugin</artifactId>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. <distributionManagement>
  106. <repository>
  107. <!-- 这里的ID要和setting的id一致 -->
  108. <id>releases</id>
  109. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  110. </repository>
  111. <!--这是打成快照版本的配置 -->
  112. <snapshotRepository>
  113. <id>snapshots</id>
  114. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  115. </snapshotRepository>
  116. </distributionManagement>
  117. </project>