pom.xml 4.1 KB

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