pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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-device</artifactId>
  7. <groupId>com.sptg</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sptg-device-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-device-api</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- 权限模块接口 -->
  37. <dependency>
  38. <groupId>com.sptg</groupId>
  39. <artifactId>sptg-permissions-api</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- 统计模块接口 -->
  43. <dependency>
  44. <groupId>com.sptg</groupId>
  45. <artifactId>sptg-statistics-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <!-- 物业模块接口 -->
  49. <dependency>
  50. <groupId>com.sptg</groupId>
  51. <artifactId>sptg-estate-api</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <!-- 广告模块接口 -->
  55. <!--<dependency>-->
  56. <!--<groupId>com.sptg</groupId>-->
  57. <!--<artifactId>sptg-ad-api</artifactId>-->
  58. <!--<version>${project.version}</version>-->
  59. <!--</dependency>-->
  60. <!-- 第三方模块接口 -->
  61. <!--<dependency>-->
  62. <!--<groupId>com.sptg</groupId>-->
  63. <!--<artifactId>sptg-third-api</artifactId>-->
  64. <!--<version>${project.version}</version>-->
  65. <!--</dependency>-->
  66. <!-- ===================================== Spring Boot JAR ===================================== -->
  67. <!-- 测试用例 -->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. </dependency>
  72. <!-- mybatis-plus -->
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-boot-starter</artifactId>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <filters>
  80. <filter>../../env_files/properties/${env}.properties</filter>
  81. </filters>
  82. <plugins>
  83. <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>