pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>auth</module>
  22. <module>oss</module>
  23. </modules>
  24. <properties>
  25. <maven.compiler.source>17</maven.compiler.source>
  26. <maven.compiler.target>17</maven.compiler.target>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  29. <springboot.version>3.2.1</springboot.version>
  30. <springcloud.version>2023.0.1</springcloud.version>
  31. <dubbo.version>3.3.0</dubbo.version>
  32. </properties>
  33. <!--<parent>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-parent</artifactId>
  36. <version>2.6.15</version>
  37. <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;
  38. </parent>-->
  39. <dependencyManagement>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-dependencies</artifactId>
  44. <version>${springboot.version}</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-dependencies</artifactId>
  51. <version>${springcloud.version}</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.dubbo</groupId>
  57. <artifactId>dubbo-dependencies-bom</artifactId>
  58. <version>${dubbo.version}</version>
  59. <type>pom</type>
  60. <scope>import</scope>
  61. </dependency>
  62. </dependencies>
  63. </dependencyManagement>
  64. <dependencies>
  65. <dependency>
  66. <groupId>cn.reghao.jutil</groupId>
  67. <artifactId>jdk</artifactId>
  68. <version>jdk17-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <optional>true</optional>
  74. <version>1.18.42</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>ch.qos.logback</groupId>
  78. <artifactId>logback-core</artifactId>
  79. <version>1.4.14</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>ch.qos.logback</groupId>
  83. <artifactId>logback-classic</artifactId>
  84. <version>1.4.14</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-validation</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>javax.validation</groupId>
  97. <artifactId>validation-api</artifactId>
  98. <version>2.0.1.Final</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>javax.annotation</groupId>
  102. <artifactId>javax.annotation-api</artifactId>
  103. <version>1.3.2</version>
  104. </dependency>
  105. </dependencies>
  106. <distributionManagement>
  107. <repository>
  108. <id>maven-local-hosted</id>
  109. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  110. </repository>
  111. </distributionManagement>
  112. </project>