pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.launch</groupId>
  7. <artifactId>launch-modules</artifactId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>launch-modules-system</artifactId>
  12. <description>
  13. launch-modules-system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!--单点登录 -->
  22. <dependency>
  23. <groupId>com.xuxueli</groupId>
  24. <artifactId>xxl-sso-core</artifactId>
  25. </dependency>
  26. <!-- Lombok 工具 -->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. </dependency>
  31. <!-- SpringCloud Alibaba Nacos Config -->
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  35. </dependency>
  36. <!-- SpringCloud Alibaba Sentinel -->
  37. <dependency>
  38. <groupId>com.alibaba.cloud</groupId>
  39. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  40. </dependency>
  41. <!-- SpringBoot Actuator -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-actuator</artifactId>
  45. </dependency>
  46. <!-- Swagger UI -->
  47. <dependency>
  48. <groupId>io.springfox</groupId>
  49. <artifactId>springfox-swagger-ui</artifactId>
  50. <version>${swagger.fox.version}</version>
  51. </dependency>
  52. <!-- Mysql Connector -->
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. </dependency>
  57. <!-- Mybatis-plus 依赖配置 -->
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus-boot-starter</artifactId>
  61. </dependency>
  62. <!-- launch Common DataSource -->
  63. <dependency>
  64. <groupId>com.launch</groupId>
  65. <artifactId>launch-common-datasource</artifactId>
  66. </dependency>
  67. <!-- launch Common DataScope -->
  68. <dependency>
  69. <groupId>com.launch</groupId>
  70. <artifactId>launch-common-datascope</artifactId>
  71. </dependency>
  72. <!-- launch Common Log -->
  73. <dependency>
  74. <groupId>com.launch</groupId>
  75. <artifactId>launch-common-log</artifactId>
  76. </dependency>
  77. <!-- launch Common Swagger -->
  78. <dependency>
  79. <groupId>com.launch</groupId>
  80. <artifactId>launch-common-swagger</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <finalName>${project.artifactId}</finalName>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <executions>
  90. <execution>
  91. <goals>
  92. <goal>repackage</goal>
  93. </goals>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>