居家业务模块,通过sdk调用机构业务的基础框架
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.

109 lines
3.8 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-jjyl-business</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>iec-jjyl-business-biz</artifactId>
  10. <name>iec-jjyl-business-biz</name>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!--文件管理-->
  14. <!--<dependency>
  15. <groupId>com.iec</groupId>
  16. <artifactId>iec-jjyl-common-oss</artifactId>
  17. </dependency>-->
  18. <!--feign 调用-->
  19. <dependency>
  20. <groupId>com.iec</groupId>
  21. <artifactId>iec-jjyl-common-feign</artifactId>
  22. </dependency>
  23. <!--安全模块-->
  24. <!-- <dependency>
  25. <groupId>com.iec</groupId>
  26. <artifactId>iec-jjyl-common-security</artifactId>
  27. </dependency>-->
  28. <!--日志处理-->
  29. <!-- <dependency>
  30. <groupId>com.iec</groupId>
  31. <artifactId>iec-jjyl-common-log</artifactId>
  32. </dependency>-->
  33. <!--接口文档-->
  34. <!-- <dependency>
  35. <groupId>com.iec</groupId>
  36. <artifactId>iec-jjyl-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-jjyl-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-jjyl-business-api</artifactId>
  75. <version>1.0-SNAPSHOT</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.iec</groupId>
  80. <artifactId>iec-yyjh-sdk</artifactId>
  81. <version>1.0-SNAPSHOT</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. </plugin>
  90. <plugin>
  91. <groupId>io.fabric8</groupId>
  92. <artifactId>docker-maven-plugin</artifactId>
  93. </plugin>
  94. </plugins>
  95. <resources>
  96. <!-- 构建排除resource下 jar 和 ttf 文件 -->
  97. <resource>
  98. <directory>src/main/resources</directory>
  99. <filtering>true</filtering>
  100. <excludes>
  101. <exclude>**/*.jar</exclude>
  102. <exclude>**/*.ttf</exclude>
  103. </excludes>
  104. </resource>
  105. </resources>
  106. </build>
  107. </project>