.flattened-pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>com.pig4cloud</groupId>
  22. <artifactId>pig-upms</artifactId>
  23. <version>3.9.0</version>
  24. </parent>
  25. <artifactId>pig-upms-biz</artifactId>
  26. <version>3.9.0</version>
  27. <description>pig 通用用户权限管理系统业务处理模块</description>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.pig4cloud</groupId>
  31. <artifactId>pig-upms-api</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.pig4cloud</groupId>
  35. <artifactId>pig-common-oss</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.pig4cloud</groupId>
  39. <artifactId>pig-common-feign</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.pig4cloud</groupId>
  43. <artifactId>pig-common-security</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>pig-common-log</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.pig4cloud</groupId>
  51. <artifactId>pig-common-swagger</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba.cloud</groupId>
  63. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba.cloud</groupId>
  67. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.dromara.sms4j</groupId>
  71. <artifactId>sms4j-spring-boot-starter</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.pig4cloud</groupId>
  75. <artifactId>pig-common-xss</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-undertow</artifactId>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <resources>
  84. <resource>
  85. <filtering>true</filtering>
  86. <directory>src/main/resources</directory>
  87. <excludes>
  88. <exclude>**/*.xlsx</exclude>
  89. <exclude>**/*.xls</exclude>
  90. </excludes>
  91. </resource>
  92. <resource>
  93. <filtering>false</filtering>
  94. <directory>src/main/resources</directory>
  95. <includes>
  96. <include>**/*.xlsx</include>
  97. <include>**/*.xls</include>
  98. </includes>
  99. </resource>
  100. </resources>
  101. </build>
  102. <profiles>
  103. <profile>
  104. <id>boot</id>
  105. </profile>
  106. <profile>
  107. <id>cloud</id>
  108. <activation>
  109. <activeByDefault>true</activeByDefault>
  110. </activation>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. </plugin>
  117. <plugin>
  118. <groupId>io.fabric8</groupId>
  119. <artifactId>docker-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </profile>
  124. </profiles>
  125. </project>