pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <artifactId>yudao-module-im</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version> <!-- 1. 修改 version 为 ${revision} -->
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
  12. <artifactId>yudao-module-im-biz</artifactId>
  13. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  14. <description> <!-- 4. 新增 description 为该模块的描述 -->
  15. im 模块,主要实现 im 模块的业务逻辑。
  16. </description>
  17. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-im-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <!-- 业务组件 -->
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-spring-boot-starter-biz-operatelog</artifactId>
  27. </dependency>
  28. <!-- Web 相关 -->
  29. <dependency>
  30. <groupId>cn.iocoder.boot</groupId>
  31. <artifactId>yudao-spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-spring-boot-starter-security</artifactId>
  36. </dependency>
  37. <!-- DB 相关 -->
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  41. </dependency>
  42. <!-- Test 测试相关 -->
  43. <dependency>
  44. <groupId>cn.iocoder.boot</groupId>
  45. <artifactId>yudao-spring-boot-starter-test</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.iocoder.boot</groupId>
  49. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.iocoder.boot</groupId>
  53. <artifactId>yudao-spring-boot-starter-websocket</artifactId>
  54. </dependency>
  55. </dependencies>
  56. </project>