华西海圻ELN服务端工程
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.

130 lines
4.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.hxhq</groupId>
  7. <artifactId>hxhq-modules</artifactId>
  8. <version>3.6.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hxhq-modules-system</artifactId>
  12. <description>
  13. hxhq-modules-system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <!-- SpringCloud Alibaba Sentinel -->
  27. <dependency>
  28. <groupId>com.alibaba.cloud</groupId>
  29. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  30. </dependency>
  31. <!-- SpringBoot Actuator -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-actuator</artifactId>
  35. </dependency>
  36. <!-- Mysql Connector -->
  37. <dependency>
  38. <groupId>com.mysql</groupId>
  39. <artifactId>mysql-connector-j</artifactId>
  40. </dependency>
  41. <!-- hxhq Common DataSource -->
  42. <dependency>
  43. <groupId>com.hxhq</groupId>
  44. <artifactId>hxhq-common-datasource</artifactId>
  45. </dependency>
  46. <!-- hxhq Common DataScope -->
  47. <dependency>
  48. <groupId>com.hxhq</groupId>
  49. <artifactId>hxhq-common-datascope</artifactId>
  50. </dependency>
  51. <!-- hxhq Common Log -->
  52. <dependency>
  53. <groupId>com.hxhq</groupId>
  54. <artifactId>hxhq-common-log</artifactId>
  55. </dependency>
  56. <!-- hxhq Common Swagger -->
  57. <dependency>
  58. <groupId>com.hxhq</groupId>
  59. <artifactId>hxhq-common-swagger</artifactId>
  60. </dependency>
  61. <!-- test -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <!-- pdf:start -->
  68. <dependency>
  69. <groupId>com.itextpdf</groupId>
  70. <artifactId>itextpdf</artifactId>
  71. <version>5.5.11</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.itextpdf.tool</groupId>
  75. <artifactId>xmlworker</artifactId>
  76. <version>5.5.11</version>
  77. </dependency>
  78. <!-- 支持中文 -->
  79. <dependency>
  80. <groupId>com.itextpdf</groupId>
  81. <artifactId>itext-asian</artifactId>
  82. <version>5.2.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.hutool</groupId>
  90. <artifactId>hutool-all</artifactId>
  91. <version>5.8.16</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.belerweb</groupId>
  95. <artifactId>pinyin4j</artifactId>
  96. <version>2.5.1</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <finalName>${project.artifactId}</finalName>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. <executions>
  106. <execution>
  107. <goals>
  108. <goal>repackage</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>