pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>hsweb-eventbus</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-eventbus-default</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework.web</groupId>
  15. <artifactId>hsweb-eventbus-api</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.slf4j</groupId>
  20. <artifactId>slf4j-api</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hswebframework.web</groupId>
  24. <artifactId>hsweb-concurrent-async-job</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.hswebframework</groupId>
  29. <artifactId>hsweb-utils</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.hswebframework.web</groupId>
  33. <artifactId>hsweb-boost-compiler</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hswebframework.web</groupId>
  42. <artifactId>hsweb-spring-boot-starter</artifactId>
  43. <version>${project.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid</artifactId>
  54. <version>1.0.26</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.h2database</groupId>
  59. <artifactId>h2</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>