pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2020 pig4cloud Authors. All Rights Reserved.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>com.pig4cloud</groupId>
  22. <artifactId>pig-statistics</artifactId>
  23. <version>${revision}</version>
  24. </parent>
  25. <artifactId>pig-statistics-biz</artifactId>
  26. <packaging>jar</packaging>
  27. <description>pig 统计业务处理模块</description>
  28. <dependencies>
  29. <!--statistics api、model 模块-->
  30. <dependency>
  31. <groupId>com.pig4cloud</groupId>
  32. <artifactId>pig-statistics-api</artifactId>
  33. </dependency>
  34. <!--UPMS接口模块-->
  35. <dependency>
  36. <groupId>com.pig4cloud</groupId>
  37. <artifactId>pig-upms-api</artifactId>
  38. </dependency>
  39. <!--文件管理-->
  40. <dependency>
  41. <groupId>com.pig4cloud</groupId>
  42. <artifactId>pig-common-oss</artifactId>
  43. </dependency>
  44. <!--feign 调用-->
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>pig-common-feign</artifactId>
  48. </dependency>
  49. <!--安全模块-->
  50. <dependency>
  51. <groupId>com.pig4cloud</groupId>
  52. <artifactId>pig-common-security</artifactId>
  53. </dependency>
  54. <!--日志处理-->
  55. <dependency>
  56. <groupId>com.pig4cloud</groupId>
  57. <artifactId>pig-common-log</artifactId>
  58. </dependency>
  59. <!--接口文档-->
  60. <dependency>
  61. <groupId>com.pig4cloud</groupId>
  62. <artifactId>pig-common-swagger</artifactId>
  63. </dependency>
  64. <!-- orm 模块-->
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.mysql</groupId>
  71. <artifactId>mysql-connector-j</artifactId>
  72. </dependency>
  73. <!--注册中心客户端-->
  74. <dependency>
  75. <groupId>com.alibaba.cloud</groupId>
  76. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  77. </dependency>
  78. <!--配置中心客户端-->
  79. <dependency>
  80. <groupId>com.alibaba.cloud</groupId>
  81. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  82. </dependency>
  83. <!-- 短信下发 -->
  84. <dependency>
  85. <groupId>org.dromara.sms4j</groupId>
  86. <artifactId>sms4j-spring-boot-starter</artifactId>
  87. </dependency>
  88. <!--xss 过滤-->
  89. <dependency>
  90. <groupId>com.pig4cloud</groupId>
  91. <artifactId>pig-common-xss</artifactId>
  92. </dependency>
  93. <!--undertow容器-->
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-undertow</artifactId>
  97. </dependency>
  98. </dependencies>
  99. <profiles>
  100. <profile>
  101. <id>boot</id>
  102. </profile>
  103. <profile>
  104. <id>cloud</id>
  105. <activation>
  106. <!-- 默认环境 -->
  107. <activeByDefault>true</activeByDefault>
  108. </activation>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. </plugin>
  115. <plugin>
  116. <groupId>io.fabric8</groupId>
  117. <artifactId>docker-maven-plugin</artifactId>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </profile>
  122. </profiles>
  123. <build>
  124. <resources>
  125. <resource>
  126. <directory>src/main/resources</directory>
  127. <filtering>true</filtering>
  128. <excludes>
  129. <exclude>**/*.xlsx</exclude>
  130. <exclude>**/*.xls</exclude>
  131. </excludes>
  132. </resource>
  133. <resource>
  134. <directory>src/main/resources</directory>
  135. <filtering>false</filtering>
  136. <includes>
  137. <include>**/*.xlsx</include>
  138. <include>**/*.xls</include>
  139. </includes>
  140. </resource>
  141. </resources>
  142. </build>
  143. </project>