pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <groupId>anyi.space</groupId>
  7. <artifactId>distributedSystemLearn</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <modules>
  10. <module>member-service-provider_10000</module>
  11. <module>member-service-consumer</module>
  12. <module>common</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <spring.boot.version>2.7.17</spring.boot.version>
  19. <mysql.connector.version>8.3.0</mysql.connector.version>
  20. <log4j.version>1.2.17</log4j.version>
  21. <mybatis.plus.version>3.4.3.4</mybatis.plus.version>
  22. <druid.version>1.2.16</druid.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-parent</artifactId>
  29. <version>${spring.boot.version}</version>
  30. <type>pom</type>
  31. <scope>import</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.mysql</groupId>
  35. <artifactId>mysql-connector-j</artifactId>
  36. <version>${mysql.connector.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>log4j</groupId>
  40. <artifactId>log4j</artifactId>
  41. <version>${log4j.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-boot-starter</artifactId>
  46. <version>${mybatis.plus.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-starter</artifactId>
  51. <version>${druid.version}</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. </project>