pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>mall</module>
  19. <module>log</module>
  20. <module>data</module>
  21. </modules>
  22. <properties>
  23. <maven.compiler.source>11</maven.compiler.source>
  24. <maven.compiler.target>11</maven.compiler.target>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. <springboot.version>2.3.9.RELEASE</springboot.version>
  28. <spring-cloud.version>Hoxton.SR10</spring-cloud.version>
  29. </properties>
  30. <parent>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-parent</artifactId>
  33. <version>2.3.9.RELEASE</version>
  34. <relativePath/> <!-- lookup parent from repository -->
  35. </parent>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-dependencies</artifactId>
  41. <version>${spring-cloud.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. </dependencies>
  46. </dependencyManagement>
  47. <dependencies>
  48. <dependency>
  49. <groupId>cn.reghao.jutil</groupId>
  50. <artifactId>jdk</artifactId>
  51. <version>1.0.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.reghao.jutil</groupId>
  55. <artifactId>tool</artifactId>
  56. <version>1.0.0-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. <version>1.18.16</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-core</artifactId>
  67. <version>1.2.3</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>ch.qos.logback</groupId>
  71. <artifactId>logback-classic</artifactId>
  72. <version>1.2.3</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-validation</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <distributionManagement>
  85. <repository>
  86. <id>maven-local-hosted</id>
  87. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  88. </repository>
  89. </distributionManagement>
  90. </project>