pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>wuye-statistics</artifactId>
  7. <groupId>com.cyzh</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wuye-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.cyzh</groupId>
  33. <artifactId>wuye-statistics-api</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 广告模块接口 -->
  37. <dependency>
  38. <groupId>com.cyzh</groupId>
  39. <artifactId>wuye-ad-api</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 物业模块接口 -->
  43. <dependency>
  44. <groupId>com.cyzh</groupId>
  45. <artifactId>wuye-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. <finalName>wuye-statistics</finalName>
  62. <plugins>
  63. <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>