华西海圻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.

152 lines
4.8 KiB

  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. <parent>
  7. <groupId>com.hxhq</groupId>
  8. <artifactId>hxhq-modules</artifactId>
  9. <version>3.6.6</version>
  10. </parent>
  11. <artifactId>hxhq-modules-integration</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>7.2.5</version>-->
  83. <!-- </dependency>-->
  84. <!-- iText 7 核心聚合包(包含 kernel/io/layout/forms) -->
  85. <dependency>
  86. <groupId>com.itextpdf</groupId>
  87. <artifactId>itext7-core</artifactId>
  88. <version>7.2.5</version>
  89. <type>pom</type>
  90. </dependency>
  91. <!-- 可选:条码支持 -->
  92. <dependency>
  93. <groupId>com.itextpdf</groupId>
  94. <artifactId>barcodes</artifactId>
  95. <version>7.2.5</version>
  96. </dependency>
  97. <!-- 可选:亚洲字体(中文/日文等) -->
  98. <dependency>
  99. <groupId>com.itextpdf</groupId>
  100. <artifactId>font-asian</artifactId>
  101. <version>7.2.5</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.projectlombok</groupId>
  105. <artifactId>lombok</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>cn.hutool</groupId>
  109. <artifactId>hutool-all</artifactId>
  110. <version>5.8.16</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.belerweb</groupId>
  114. <artifactId>pinyin4j</artifactId>
  115. <version>2.5.1</version>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <finalName>${project.artifactId}</finalName>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <executions>
  125. <execution>
  126. <goals>
  127. <goal>repackage</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. </plugins>
  133. </build>
  134. </project>