pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>sptg-third</artifactId>
  7. <groupId>com.sptg</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>sptg-third-biz</artifactId>
  13. <description>第三方接口推送业务实现模块</description>
  14. <dependencies>
  15. <!-- ===================================== Or JAR ===================================== -->
  16. <!-- MySql -->
  17. <dependency>
  18. <groupId>mysql</groupId>
  19. <artifactId>mysql-connector-java</artifactId>
  20. </dependency>
  21. <!-- druid 数据源 -->
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>druid</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. </dependency>
  30. <!-- ===================================== Modular JAR ===================================== -->
  31. <dependency>
  32. <groupId>com.sptg</groupId>
  33. <artifactId>sptg-third-api</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 物业服务接口 -->
  37. <dependency>
  38. <groupId>com.sptg</groupId>
  39. <artifactId>sptg-estate-api</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 物联网服务接口 -->
  43. <dependency>
  44. <groupId>com.sptg</groupId>
  45. <artifactId>sptg-iot-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <!-- 视频云服务接口 -->
  49. <dependency>
  50. <groupId>com.sptg</groupId>
  51. <artifactId>sptg-video-cloud-api</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <!-- ===================================== Spring Boot JAR ===================================== -->
  55. <!-- mybatis-plus -->
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>mybatis-plus-boot-starter</artifactId>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <filters>
  63. <filter>../../env_files/properties/${env}.properties</filter>
  64. </filters>
  65. <plugins>
  66. <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>