pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. </modules>
  21. <groupId>com.flow</groupId>
  22. <artifactId>lowflow</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. <name>parent 父模块</name>
  25. <description>Demo project for Spring Boot</description>
  26. <properties>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  29. <java.version>1.8</java.version>
  30. <maven.compiler.source>1.8</maven.compiler.source>
  31. <maven.compiler.target>1.8</maven.compiler.target>
  32. <spring.boot-version>2.3.12.RELEASE</spring.boot-version>
  33. <mysql.version>8.0.21</mysql.version>
  34. <guava.version>33.0.0-jre</guava.version>
  35. <mybatis.plus.version>3.5.5</mybatis.plus.version>
  36. </properties>
  37. <dependencyManagement>
  38. <dependencies>
  39. <!--boot-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-dependencies</artifactId>
  43. <version>${spring.boot-version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <!--mysql-->
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <version>${mysql.version}</version>
  52. </dependency>
  53. <!--guava-->
  54. <dependency>
  55. <groupId>com.google.guava</groupId>
  56. <artifactId>guava</artifactId>
  57. <version>${guava.version}</version>
  58. </dependency>
  59. <!--mybaits plus-->
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. <version>${mybatis.plus.version}</version>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. <dependencies>
  68. <!--log4j2-->
  69. <!-- <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-log4j2</artifactId>
  72. <version>2.6.2</version>
  73. </dependency>-->
  74. </dependencies>
  75. </project>