pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-statistics</artifactId>
  7. <groupId>com.sptg</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sptg-statistics-biz</artifactId>
  12. <description>统计业务实现模块</description>
  13. <dependencies>
  14. <!-- ===================================== Or JAR ===================================== -->
  15. <!-- MySql -->
  16. <dependency>
  17. <groupId>mysql</groupId>
  18. <artifactId>mysql-connector-java</artifactId>
  19. </dependency>
  20. <!-- druid 数据源 -->
  21. <dependency>
  22. <groupId>com.alibaba</groupId>
  23. <artifactId>druid</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. </dependency>
  29. <!-- ===================================== Modular JAR ===================================== -->
  30. <!-- 统计服务接口 -->
  31. <dependency>
  32. <groupId>com.sptg</groupId>
  33. <artifactId>sptg-statistics-api</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 广告模块接口 -->
  37. <dependency>
  38. <groupId>com.sptg</groupId>
  39. <artifactId>sptg-ad-api</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 物业模块接口 -->
  43. <dependency>
  44. <groupId>com.sptg</groupId>
  45. <artifactId>sptg-estate-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <!-- ===================================== Spring Boot JAR ===================================== -->
  49. <!-- 测试用例 -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. </dependency>
  54. <!-- mybatis-plus -->
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <filters>
  62. <filter>../../env_files/properties/${env}.properties</filter>
  63. </filters>
  64. <plugins>
  65. <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>