机构基础架构
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.

104 lines
3.6 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.iec</groupId>
  6. <artifactId>iec-yyjh-business</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>iec-yyjh-business-biz</artifactId>
  10. <name>iec-yyjh-business-biz</name>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!--文件管理-->
  14. <dependency>
  15. <groupId>com.iec</groupId>
  16. <artifactId>iec-yyjh-common-oss</artifactId>
  17. </dependency>
  18. <!--feign 调用-->
  19. <dependency>
  20. <groupId>com.iec</groupId>
  21. <artifactId>iec-yyjh-common-feign</artifactId>
  22. </dependency>
  23. <!--安全模块-->
  24. <dependency>
  25. <groupId>com.iec</groupId>
  26. <artifactId>iec-yyjh-common-security</artifactId>
  27. </dependency>
  28. <!--日志处理-->
  29. <dependency>
  30. <groupId>com.iec</groupId>
  31. <artifactId>iec-yyjh-common-log</artifactId>
  32. </dependency>
  33. <!--接口文档-->
  34. <dependency>
  35. <groupId>com.iec</groupId>
  36. <artifactId>iec-yyjh-common-swagger</artifactId>
  37. </dependency>
  38. <!-- orm 模块-->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.mysql</groupId>
  45. <artifactId>mysql-connector-j</artifactId>
  46. </dependency>
  47. <!--注册中心客户端-->
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  51. </dependency>
  52. <!--配置中心客户端-->
  53. <dependency>
  54. <groupId>com.alibaba.cloud</groupId>
  55. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  56. </dependency>
  57. <!-- 阿里云短信下发 -->
  58. <dependency>
  59. <groupId>io.springboot.sms</groupId>
  60. <artifactId>aliyun-sms-spring-boot-starter</artifactId>
  61. </dependency>
  62. <!--xss 过滤-->
  63. <dependency>
  64. <groupId>com.iec</groupId>
  65. <artifactId>iec-yyjh-common-xss</artifactId>
  66. </dependency>
  67. <!--undertow容器-->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-undertow</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.iec</groupId>
  74. <artifactId>iec-yyjh-business-api</artifactId>
  75. <version>1.0-SNAPSHOT</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. </plugin>
  85. <plugin>
  86. <groupId>io.fabric8</groupId>
  87. <artifactId>docker-maven-plugin</artifactId>
  88. </plugin>
  89. </plugins>
  90. <resources>
  91. <!-- 构建排除resource下 jar 和 ttf 文件 -->
  92. <resource>
  93. <directory>src/main/resources</directory>
  94. <filtering>true</filtering>
  95. <excludes>
  96. <exclude>**/*.jar</exclude>
  97. <exclude>**/*.ttf</exclude>
  98. </excludes>
  99. </resource>
  100. </resources>
  101. </build>
  102. </project>