pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.12.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <artifactId>4dkankan-center-modeling-extend</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>snapshots</id>
  21. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  22. </repository>
  23. <repository>
  24. <id>nexus-aliyun</id>
  25. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  26. </repository>
  27. </repositories>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.fdkankan</groupId>
  31. <artifactId>4dkankan-common-web</artifactId>
  32. <version>3.0.0-SNAPSHOT</version>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.bytedeco</groupId>
  36. <artifactId>javacv</artifactId>
  37. </exclusion>
  38. <exclusion>
  39. <groupId>org.bytedeco</groupId>
  40. <artifactId>javacpp</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>org.bytedeco</groupId>
  44. <artifactId>javacv-platform</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>joinery</groupId>
  48. <artifactId>jave</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>com.aliyun</groupId>
  52. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>com.aliyun</groupId>
  56. <artifactId>aliyun-java-sdk-core</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery -->
  61. <dependency>
  62. <groupId>com.alibaba.cloud</groupId>
  63. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  64. <version>2.2.7.RELEASE</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config -->
  67. <dependency>
  68. <groupId>com.alibaba.cloud</groupId>
  69. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  70. <version>2.2.7.RELEASE</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fdkankan</groupId>
  74. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  75. <version>3.0.0-SNAPSHOT</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.fdkankan</groupId>
  79. <artifactId>4dkankan-utils-fyun-oss</artifactId>
  80. <version>3.0.0-SNAPSHOT</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.fdkankan</groupId>
  84. <artifactId>4dkankan-utils-model</artifactId>
  85. <version>3.0.0-SNAPSHOT</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.fdkankan</groupId>
  89. <artifactId>4dkankan-utils-redis</artifactId>
  90. <version>3.0.0-SNAPSHOT</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.fdkankan</groupId>
  94. <artifactId>4dkankan-utils-db</artifactId>
  95. <version>3.0.0-SNAPSHOT</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.yomahub</groupId>
  99. <artifactId>tlog-web-spring-boot-starter</artifactId>
  100. <version>1.3.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.httpcomponents</groupId>
  104. <artifactId>httpmime</artifactId>
  105. <version>4.5.8</version>
  106. </dependency>
  107. <!-- htt请求工具-->
  108. <dependency>
  109. <groupId>com.dtflys.forest</groupId>
  110. <artifactId>forest-spring-boot-starter</artifactId>
  111. <version>1.5.19</version>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <finalName>${artifactId}</finalName>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. <distributionManagement>
  124. <repository>
  125. <id>releases</id>
  126. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  127. </repository>
  128. <snapshotRepository>
  129. <id>snapshots</id>
  130. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  131. </snapshotRepository>
  132. </distributionManagement>
  133. </project>