pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.storlead.boot</groupId>
  8. <artifactId>storlead-message</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-message-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-message-biz</name>
  15. <description>消息域实现:Mapper、Service 实现。</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-message-spi</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.storlead.boot</groupId>
  23. <artifactId>storlead-message-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.storlead.boot</groupId>
  27. <artifactId>storlead-mybatis</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.storlead.boot</groupId>
  31. <artifactId>storlead-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.storlead.boot</groupId>
  35. <artifactId>storlead-auth</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.storlead.boot</groupId>
  39. <artifactId>storlead-user-spi</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.storlead.boot</groupId>
  43. <artifactId>storlead-user-biz</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.storlead.boot</groupId>
  47. <artifactId>storlead-thirdparty-wecom</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.googlecode.aviator</groupId>
  51. <artifactId>aviator</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>transmittable-thread-local</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-context</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>storlead-message-biz</finalName>
  64. </build>
  65. </project>