pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-module-infra</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-module-infra-impl</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${artifactId}</name>
  14. <description>
  15. infra 包下,我们放基础设施的运维与管理,支撑上层的通用与核心业务。
  16. 例如说:定时任务的管理、服务器的信息等等
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.iocoder.boot</groupId>
  21. <artifactId>yudao-module-member-api</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-module-system-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <!-- 业务组件 -->
  30. <dependency>
  31. <groupId>cn.iocoder.boot</groupId>
  32. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  33. </dependency>
  34. <!-- Web 相关 -->
  35. <dependency>
  36. <groupId>cn.iocoder.boot</groupId>
  37. <artifactId>yudao-spring-boot-starter-security</artifactId>
  38. </dependency>
  39. <!-- DB 相关 -->
  40. <dependency>
  41. <groupId>cn.iocoder.boot</groupId>
  42. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-redis</artifactId>
  47. </dependency>
  48. <!-- 消息队列相关 -->
  49. <dependency>
  50. <groupId>cn.iocoder.boot</groupId>
  51. <artifactId>yudao-spring-boot-starter-mq</artifactId>
  52. </dependency>
  53. <!-- Test 测试相关 -->
  54. <dependency>
  55. <groupId>cn.iocoder.boot</groupId>
  56. <artifactId>yudao-spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <!-- 工具类相关 -->
  60. </dependencies>
  61. <build>
  62. <!-- 设置构建的 jar 包名 -->
  63. <finalName>${artifactId}</finalName>
  64. <plugins>
  65. <!-- 打包 -->
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <configuration>
  70. <fork>true</fork>
  71. </configuration>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>