pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. <parent>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-user-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>yudao-admin-server</name>
  14. <description>用户前台 Server,提供其 API 接口</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <!-- 业务组件 -->
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-core-service</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.iocoder.boot</groupId>
  24. <artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.iocoder.boot</groupId>
  28. <artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.iocoder.boot</groupId>
  32. <artifactId>yudao-spring-boot-starter-biz-weixin</artifactId>
  33. </dependency>
  34. <!-- Web 相关 -->
  35. <dependency>
  36. <groupId>cn.iocoder.boot</groupId>
  37. <artifactId>yudao-spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.iocoder.boot</groupId>
  41. <artifactId>yudao-spring-boot-starter-security</artifactId>
  42. </dependency>
  43. <!-- DB 相关 -->
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  51. </dependency>
  52. <!-- Config 配置中心相关 -->
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-spring-boot-starter-config</artifactId>
  56. </dependency>
  57. <!-- Job 定时任务相关 -->
  58. <!-- 消息队列相关 -->
  59. <dependency>
  60. <groupId>cn.iocoder.boot</groupId>
  61. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  62. </dependency>
  63. <!-- 服务保障相关 -->
  64. <dependency>
  65. <groupId>cn.iocoder.boot</groupId>
  66. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  67. </dependency>
  68. <!-- 监控相关 -->
  69. <dependency>
  70. <groupId>cn.iocoder.boot</groupId>
  71. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  72. </dependency>
  73. <!-- Test 测试相关 -->
  74. <dependency>
  75. <groupId>cn.iocoder.boot</groupId>
  76. <artifactId>yudao-spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <!-- 工具类相关 -->
  80. </dependencies>
  81. <build>
  82. <!-- 设置构建的 jar 包名 -->
  83. <finalName>${artifactId}</finalName>
  84. <plugins>
  85. <!-- 打包 -->
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <configuration>
  90. <fork>true</fork>
  91. </configuration>
  92. <executions>
  93. <execution>
  94. <goals>
  95. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>