pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>pom</packaging>
  7. <parent>
  8. <groupId>com.flow</groupId>
  9. <artifactId>lowflow</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <modules>
  13. <module>flow-im-entity</module>
  14. <module>flow-im-api</module>
  15. <module>flow-im-biz</module>
  16. <module>flow-im-controller</module>
  17. </modules>
  18. <artifactId>flow-im</artifactId>
  19. <name>im 消息模块</name>
  20. <description>系统依赖设置处理</description>
  21. <properties>
  22. <maven.compiler.source>8</maven.compiler.source>
  23. <maven.compiler.target>8</maven.compiler.target>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.flow</groupId>
  29. <artifactId>flow-common-core</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.flow</groupId>
  34. <artifactId>flow-common-mybatis-starter</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <!--websocket-->
  38. <dependency>
  39. <groupId>com.flow</groupId>
  40. <artifactId>flow-common-websocket-starter</artifactId>
  41. <version>0.0.1-SNAPSHOT</version>
  42. </dependency>
  43. <!--mail-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.springframework.boot</groupId>-->
  46. <!-- <artifactId>spring-boot-starter-mail</artifactId>-->
  47. <!-- </dependency>-->
  48. </dependencies>
  49. </project>