pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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>cn.reghao.tnb</groupId>
  7. <artifactId>tnb</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>common</module>
  12. <module>log</module>
  13. <module>account</module>
  14. <module>gateway</module>
  15. <module>content</module>
  16. <module>message</module>
  17. <module>file</module>
  18. <module>user</module>
  19. <module>data</module>
  20. <module>eureka</module>
  21. <module>search</module>
  22. </modules>
  23. <properties>
  24. <maven.compiler.source>11</maven.compiler.source>
  25. <maven.compiler.target>11</maven.compiler.target>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <springboot.version>2.6.15</springboot.version>
  29. <spring-cloud.version>2021.0.9</spring-cloud.version>
  30. </properties>
  31. <parent>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-parent</artifactId>
  34. <version>2.6.15</version>
  35. <relativePath/> <!-- lookup parent from repository -->
  36. </parent>
  37. <dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-dependencies</artifactId>
  42. <version>${spring-cloud.version}</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.dubbo</groupId>
  48. <artifactId>dubbo-dependencies-bom</artifactId>
  49. <version>3.3.0</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. <dependencies>
  56. <dependency>
  57. <groupId>cn.reghao.jutil</groupId>
  58. <artifactId>jdk</artifactId>
  59. <version>1.0.0-SNAPSHOT</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.reghao.jutil</groupId>
  63. <artifactId>tool</artifactId>
  64. <version>1.0.0-SNAPSHOT</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <optional>true</optional>
  70. <version>1.18.16</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>ch.qos.logback</groupId>
  74. <artifactId>logback-core</artifactId>
  75. <version>1.2.3</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>ch.qos.logback</groupId>
  79. <artifactId>logback-classic</artifactId>
  80. <version>1.2.3</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-validation</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.dubbo</groupId>
  93. <artifactId>dubbo-spring-boot-starter</artifactId>
  94. <version>3.3.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.dubbo</groupId>
  98. <artifactId>dubbo-zookeeper-spring-boot-starter</artifactId>
  99. <version>3.3.0</version>
  100. </dependency>
  101. </dependencies>
  102. <distributionManagement>
  103. <repository>
  104. <id>maven-local-hosted</id>
  105. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  106. </repository>
  107. </distributionManagement>
  108. </project>