pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>imcs-admin-boot</artifactId>
  7. <groupId>com.github.zuihou</groupId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-msgs-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>消息服务业务层</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-msgs-entity</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.zuihou</groupId>
  23. <artifactId>zuihou-databases</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.zuihou</groupId>
  27. <artifactId>zuihou-dozer-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.zuihou</groupId>
  31. <artifactId>zuihou-boot</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <resources>
  44. <resource>
  45. <directory>src/main/resources</directory>
  46. </resource>
  47. </resources>
  48. </build>
  49. </project>