pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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-upms</artifactId>
  23. <version>3.6.7</version>
  24. </parent>
  25. <artifactId>pig-upms-biz</artifactId>
  26. <packaging>jar</packaging>
  27. <description>pig 通用用户权限管理系统业务处理模块</description>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. <version>29.0-jre</version>
  33. </dependency>
  34. <!--upms api、model 模块-->
  35. <dependency>
  36. <groupId>com.pig4cloud</groupId>
  37. <artifactId>pig-upms-api</artifactId>
  38. </dependency>
  39. <!--文件管理-->
  40. <dependency>
  41. <groupId>com.pig4cloud.plugin</groupId>
  42. <artifactId>oss-spring-boot-starter</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-boot-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>io.springboot.sms</groupId>
  86. <artifactId>aliyun-sms-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. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. </plugin>
  105. <plugin>
  106. <groupId>io.fabric8</groupId>
  107. <artifactId>docker-maven-plugin</artifactId>
  108. </plugin>
  109. </plugins>
  110. <resources>
  111. <resource>
  112. <directory>src/main/resources</directory>
  113. <filtering>true</filtering>
  114. <excludes>
  115. <exclude>**/*.xlsx</exclude>
  116. <exclude>**/*.xls</exclude>
  117. </excludes>
  118. </resource>
  119. <resource>
  120. <directory>src/main/resources</directory>
  121. <filtering>false</filtering>
  122. <includes>
  123. <include>**/*.xlsx</include>
  124. <include>**/*.xls</include>
  125. </includes>
  126. </resource>
  127. </resources>
  128. </build>
  129. </project>