pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.tourism</groupId>
  6. <artifactId>tourism_platform</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>application-webadmin</artifactId>
  11. <version>1.0.0</version>
  12. <name>application-webadmin</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 业务组件依赖 -->
  16. <dependency>
  17. <groupId>com.tourism</groupId>
  18. <artifactId>common-satoken</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.tourism</groupId>
  23. <artifactId>common-ext</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tourism</groupId>
  28. <artifactId>common-redis</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.tourism</groupId>
  33. <artifactId>common-mobile</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.tourism</groupId>
  38. <artifactId>common-report</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.tourism</groupId>
  43. <artifactId>common-online</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.tourism</groupId>
  48. <artifactId>common-flow-online</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.tourism</groupId>
  53. <artifactId>common-log</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.tourism</groupId>
  58. <artifactId>common-huaweicloud-obs</artifactId>
  59. <version>1.0.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.tourism</groupId>
  63. <artifactId>common-sequence</artifactId>
  64. <version>1.0.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.tourism</groupId>
  68. <artifactId>common-datafilter</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.tourism</groupId>
  73. <artifactId>common-swagger</artifactId>
  74. <version>1.0.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.tourism</groupId>
  78. <artifactId>common-dict</artifactId>
  79. <version>1.0.0</version>
  80. </dependency>
  81. <!-- <dependency>-->
  82. <!-- <groupId>com.anji-plus</groupId>-->
  83. <!-- <artifactId>spring-boot-starter-captcha</artifactId>-->
  84. <!-- <version>1.3.0</version>-->
  85. <!-- <scope>compile</scope>-->
  86. <!-- </dependency>-->
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. <version>${spring-boot.version}</version>
  94. <executions>
  95. <execution>
  96. <goals>
  97. <goal>repackage</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>