pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-ad</artifactId>
  7. <groupId>com.cyzh</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wuye-ad-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-ad-api</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 权限模块接口 -->
  37. <dependency>
  38. <groupId>com.cyzh</groupId>
  39. <artifactId>wuye-permissions-api</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 设备模块接口 -->
  43. <dependency>
  44. <groupId>com.cyzh</groupId>
  45. <artifactId>wuye-device-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <!-- 统计模块接口 -->
  49. <dependency>
  50. <groupId>com.cyzh</groupId>
  51. <artifactId>wuye-statistics-api</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <!-- ===================================== Spring Boot JAR ===================================== -->
  55. <!-- 测试用例 -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. </dependency>
  60. <!-- mybatis-plus -->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <finalName>wuye-ad</finalName>
  68. <plugins>
  69. <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>