Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

112 lines
4.2KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>tuoheng-eureka</module>
  8. <module>tuoheng-gateway</module>
  9. <module>tuoheng-auth</module>
  10. <module>tuoheng-common</module>
  11. <module>tuoheng-service</module>
  12. <module>tuoheng-service-api</module>
  13. </modules>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.7.0</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20. <groupId>com.tuoheng</groupId>
  21. <artifactId>tuoheng</artifactId>
  22. <version>1.0.0</version>
  23. <name>tuoheng</name>
  24. <description>tuoheng</description>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. <spring-cloud.version>2021.0.3</spring-cloud.version>
  28. <tuoheng.version>1.0.0</tuoheng.version>
  29. <fastjson.version>1.2.76</fastjson.version>
  30. <poi.version>3.17</poi.version>
  31. <commons.io.version>2.5</commons.io.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-dependencies</artifactId>
  45. <version>${spring-cloud.version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- 核心模块依赖 -->
  50. <dependency>
  51. <groupId>com.tuoheng</groupId>
  52. <artifactId>tuoheng-common-core</artifactId>
  53. <version>${tuoheng.version}</version>
  54. </dependency>
  55. <!-- 安全认证依赖 -->
  56. <dependency>
  57. <groupId>com.tuoheng</groupId>
  58. <artifactId>tuoheng-common-security</artifactId>
  59. <version>${tuoheng.version}</version>
  60. </dependency>
  61. <!-- 系统服务API接口层模块依赖 -->
  62. <dependency>
  63. <groupId>com.tuoheng</groupId>
  64. <artifactId>tuoheng-system-api</artifactId>
  65. <version>${tuoheng.version}</version>
  66. </dependency>
  67. <!-- Excel工具 -->
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi-ooxml</artifactId>
  71. <version>${poi.version}</version>
  72. </dependency>
  73. <!-- JSON 解析器和生成器 -->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>${fastjson.version}</version>
  78. </dependency>
  79. <!-- IO常用工具类 -->
  80. <dependency>
  81. <groupId>commons-io</groupId>
  82. <artifactId>commons-io</artifactId>
  83. <version>${commons.io.version}</version>
  84. </dependency>
  85. </dependencies>
  86. </dependencyManagement>
  87. <!-- <build>-->
  88. <!-- <plugins>-->
  89. <!-- <plugin>-->
  90. <!-- <groupId>org.springframework.boot</groupId>-->
  91. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  92. <!-- </plugin>-->
  93. <!-- </plugins>-->
  94. <!-- </build>-->
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-compiler-plugin</artifactId>
  100. <configuration>
  101. <source>${java.version}</source>
  102. <target>${java.version}</target>
  103. <encoding>${project.build.sourceEncoding}</encoding>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>