基于pigx的分布式架构
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.

141 lines
4.8 KiB

11 months ago
  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>iec-upms</artifactId>
  23. <version>${revision}</version>
  24. </parent>
  25. <artifactId>iec-upms-biz</artifactId>
  26. <packaging>jar</packaging>
  27. <description>pig 通用用户权限管理系统业务处理模块</description>
  28. <dependencies>
  29. <!--upms api、model 模块-->
  30. <dependency>
  31. <groupId>com.pig4cloud</groupId>
  32. <artifactId>iec-upms-api</artifactId>
  33. </dependency>
  34. <!--文件管理-->
  35. <dependency>
  36. <groupId>com.pig4cloud</groupId>
  37. <artifactId>iec-common-oss</artifactId>
  38. </dependency>
  39. <!--feign 调用-->
  40. <dependency>
  41. <groupId>com.pig4cloud</groupId>
  42. <artifactId>iec-common-feign</artifactId>
  43. </dependency>
  44. <!--安全模块-->
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>iec-common-security</artifactId>
  48. </dependency>
  49. <!--日志处理-->
  50. <dependency>
  51. <groupId>com.pig4cloud</groupId>
  52. <artifactId>iec-common-log</artifactId>
  53. </dependency>
  54. <!--接口文档-->
  55. <dependency>
  56. <groupId>com.pig4cloud</groupId>
  57. <artifactId>iec-common-swagger</artifactId>
  58. </dependency>
  59. <!-- orm 模块-->
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.mysql</groupId>
  66. <artifactId>mysql-connector-j</artifactId>
  67. </dependency>
  68. <!--注册中心客户端-->
  69. <dependency>
  70. <groupId>com.alibaba.cloud</groupId>
  71. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  72. </dependency>
  73. <!--配置中心客户端-->
  74. <dependency>
  75. <groupId>com.alibaba.cloud</groupId>
  76. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  77. </dependency>
  78. <!-- 阿里云短信下发 -->
  79. <dependency>
  80. <groupId>io.springboot.sms</groupId>
  81. <artifactId>aliyun-sms-spring-boot-starter</artifactId>
  82. </dependency>
  83. <!--xss 过滤-->
  84. <dependency>
  85. <groupId>com.pig4cloud</groupId>
  86. <artifactId>iec-common-xss</artifactId>
  87. </dependency>
  88. <!--undertow容器-->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-undertow</artifactId>
  92. </dependency>
  93. </dependencies>
  94. <profiles>
  95. <profile>
  96. <id>boot</id>
  97. </profile>
  98. <profile>
  99. <id>cloud</id>
  100. <build>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. </plugin>
  106. <plugin>
  107. <groupId>io.fabric8</groupId>
  108. <artifactId>docker-maven-plugin</artifactId>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. </profile>
  113. </profiles>
  114. <build>
  115. <resources>
  116. <resource>
  117. <directory>src/main/resources</directory>
  118. <filtering>true</filtering>
  119. <excludes>
  120. <exclude>**/*.xlsx</exclude>
  121. <exclude>**/*.xls</exclude>
  122. </excludes>
  123. </resource>
  124. <resource>
  125. <directory>src/main/resources</directory>
  126. <filtering>false</filtering>
  127. <includes>
  128. <include>**/*.xlsx</include>
  129. <include>**/*.xls</include>
  130. </includes>
  131. </resource>
  132. </resources>
  133. </build>
  134. </project>