pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. <parent>
  6. <artifactId>secure-producting</artifactId>
  7. <groupId>com.customs.cq.datacenter</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>secure-producting-host</artifactId>
  12. <description>程序启动入口</description>
  13. <dependencies>
  14. <!--=================================== 项目本身模块 - start ===================================-->
  15. <!-- 通用工具 -->
  16. <dependency>
  17. <groupId>${project.groupId}</groupId>
  18. <artifactId>secure-producting-common</artifactId>
  19. </dependency>
  20. <!-- 核心模块 -->
  21. <dependency>
  22. <groupId>${project.groupId}</groupId>
  23. <artifactId>secure-producting-framework</artifactId>
  24. </dependency>
  25. <!-- OSS对象存储模块 -->
  26. <dependency>
  27. <groupId>${project.groupId}</groupId>
  28. <artifactId>secure-producting-oss</artifactId>
  29. </dependency>
  30. <!-- 系统模块 -->
  31. <dependency>
  32. <groupId>${project.groupId}</groupId>
  33. <artifactId>secure-producting-system</artifactId>
  34. </dependency>
  35. <!-- 业务模块 -->
  36. <dependency>
  37. <groupId>${project.groupId}</groupId>
  38. <artifactId>secure-producting-business</artifactId>
  39. </dependency>
  40. <!--=================================== 项目本身模块 - end ===================================-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <artifactId>spring-boot-starter-tomcat</artifactId>
  47. <groupId>org.springframework.boot</groupId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <!-- servlet-api -->
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>javax.servlet-api</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-context</artifactId>
  59. </dependency>
  60. <!-- spring-boot-devtools -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-devtools</artifactId>
  64. <optional>true</optional> <!-- 表示依赖不会传递 -->
  65. </dependency>
  66. <dependency>
  67. <groupId>com.google.code.gson</groupId>
  68. <artifactId>gson</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.hutool</groupId>
  72. <artifactId>hutool-captcha</artifactId>
  73. </dependency>
  74. <!-- 数据库驱动 -->
  75. <dependency>
  76. <groupId>com.dameng</groupId>
  77. <artifactId>Dm8JdbcDriver18</artifactId>
  78. <version>18</version>
  79. <scope>system</scope>
  80. <systemPath>${pom.basedir}/src/main/resources/lib/DmJdbcDriver18.jar</systemPath>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.gov.customs</groupId>
  84. <artifactId>h4a-sdk</artifactId>
  85. <version>1.0.6</version>
  86. <scope>system</scope>
  87. <systemPath>${pom.basedir}/src/main/resources/lib/h4a-sdk-1.0.6.jar</systemPath>
  88. </dependency>
  89. <dependency>
  90. <groupId>cn.gov.customs</groupId>
  91. <artifactId>sso-sdk</artifactId>
  92. <version>1.0.6</version>
  93. <scope>system</scope>
  94. <systemPath>${pom.basedir}/src/main/resources/lib/sso-sdk-1.0.6.jar</systemPath>
  95. </dependency>
  96. <dependency>
  97. <groupId>cn.gov.customs</groupId>
  98. <artifactId>config-sdk</artifactId>
  99. <version>1.0.6</version>
  100. <scope>system</scope>
  101. <systemPath>${pom.basedir}/src/main/resources/lib/config-sdk-1.0.6.jar</systemPath>
  102. </dependency>
  103. <!--mapstruct编译-->
  104. <dependency>
  105. <groupId>org.mapstruct</groupId>
  106. <artifactId>mapstruct-processor</artifactId>
  107. </dependency>
  108. <!-- 获取系统信息 -->
  109. <dependency>
  110. <groupId>com.github.oshi</groupId>
  111. <artifactId>oshi-core</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>cn.dev33</groupId>
  115. <artifactId>sa-token-core</artifactId>
  116. </dependency>
  117. <!-- sql性能分析插件 -->
  118. <dependency>
  119. <groupId>p6spy</groupId>
  120. <artifactId>p6spy</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <!--最终打包名,打jar包在此配置。 此处引用变量${package.buildName} -->
  125. <finalName>${project.artifactId}${package.buildName}</finalName>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <configuration>
  131. <!-- 如果没有该配置,devtools不会生效 -->
  132. <fork>true</fork>
  133. <!-- 将本地jar参与打包 -->
  134. <includeSystemScope>true</includeSystemScope>
  135. <!-- <arguments>${project.basedir}\src\main\resources\lib</arguments>-->
  136. </configuration>
  137. </plugin>
  138. <!-- smart-doc 自动生成接口文档 -->
  139. <plugin>
  140. <groupId>com.github.shalousun</groupId>
  141. <artifactId>smart-doc-maven-plugin</artifactId>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </project>