拓恒电信城管管理平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.1KB

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