pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-estate</artifactId>
  7. <groupId>com.sptg</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sptg-estate-api</artifactId>
  12. <description>物业服务接口</description>
  13. <dependencies>
  14. <!-- ===================================== Modular JAR ===================================== -->
  15. <dependency>
  16. <groupId>cn.hutool</groupId>
  17. <artifactId>hutool-all</artifactId>
  18. <version>5.4.4</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.sptg</groupId>
  22. <artifactId>sptg-common-core</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <!-- 权限服务接口 -->
  26. <dependency>
  27. <groupId>com.sptg</groupId>
  28. <artifactId>sptg-permissions-api</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <!-- 设备模块接口 -->
  32. <dependency>
  33. <groupId>com.sptg</groupId>
  34. <artifactId>sptg-device-api</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <!-- 统计模块接口 -->
  38. <dependency>
  39. <groupId>com.sptg</groupId>
  40. <artifactId>sptg-statistics-api</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <!-- ===================================== Or JAR ===================================== -->
  44. <!-- Lombok -->
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.4.4</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. </dependencies>
  56. </project>