pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.12.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <modules>
  13. <module>flow-common</module>
  14. <module>flow-oauth</module>
  15. <module>flow-app</module>
  16. <module>flow-workflow</module>
  17. <module>flow-system</module>
  18. <module>flow-file</module>
  19. <module>flow-im</module>
  20. <module>flow-report</module>
  21. </modules>
  22. <groupId>com.flow</groupId>
  23. <artifactId>lowflow</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. <name>parent 父模块</name>
  26. <description>Demo project for Spring Boot</description>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  30. <java.version>1.8</java.version>
  31. <maven.compiler.source>1.8</maven.compiler.source>
  32. <maven.compiler.target>1.8</maven.compiler.target>
  33. <spring.boot-version>2.3.12.RELEASE</spring.boot-version>
  34. <mysql.version>8.0.21</mysql.version>
  35. <guava.version>33.0.0-jre</guava.version>
  36. <mybatis.plus.version>3.5.5</mybatis.plus.version>
  37. <redisson.version>3.17.1</redisson.version>
  38. </properties>
  39. <dependencyManagement>
  40. <dependencies>
  41. <!--boot-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>${spring.boot-version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!--mysql-->
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>${mysql.version}</version>
  54. </dependency>
  55. <!--guava-->
  56. <dependency>
  57. <groupId>com.google.guava</groupId>
  58. <artifactId>guava</artifactId>
  59. <version>${guava.version}</version>
  60. </dependency>
  61. <!--mybaits plus-->
  62. <dependency>
  63. <groupId>com.baomidou</groupId>
  64. <artifactId>mybatis-plus-boot-starter</artifactId>
  65. <version>${mybatis.plus.version}</version>
  66. </dependency>
  67. <!--redisson-->
  68. <dependency>
  69. <groupId>org.redisson</groupId>
  70. <artifactId>redisson-spring-boot-starter</artifactId>
  71. <version>${redisson.version}</version>
  72. </dependency>
  73. </dependencies>
  74. </dependencyManagement>
  75. <dependencies>
  76. <!--log4j2-->
  77. <!-- <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-log4j2</artifactId>
  80. <version>2.6.2</version>
  81. </dependency>-->
  82. </dependencies>
  83. </project>