pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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-web-service</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>2.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-service-simple</artifactId>
  12. <dependencies>
  13. <!--test-->
  14. <dependency>
  15. <groupId>org.hsweb</groupId>
  16. <artifactId>hsweb-web-datasource</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.quartz-scheduler</groupId>
  21. <artifactId>quartz</artifactId>
  22. <version>2.2.3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context-support</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-redis</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.el</groupId>
  35. <artifactId>el-api</artifactId>
  36. <version>2.2</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hsweb</groupId>
  41. <artifactId>hsweb-web-dao-mybatis</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.oracle</groupId>
  51. <artifactId>ojdbc14</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.h2database</groupId>
  56. <artifactId>h2</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>mysql</groupId>
  61. <artifactId>mysql-connector-java</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. <version>1.0.25</version>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.hsweb</groupId>
  72. <artifactId>hsweb-expands-office</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.jsoup</groupId>
  76. <artifactId>jsoup</artifactId>
  77. <version>1.8.3</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.hsweb</groupId>
  81. <artifactId>hsweb-easy-orm</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.codehaus.groovy</groupId>
  85. <artifactId>groovy-all</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.hsweb</groupId>
  89. <artifactId>hsweb-web-concurrent-cache</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.hsweb</groupId>
  93. <artifactId>hsweb-web-concurrent-lock</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.hsweb</groupId>
  97. <artifactId>hsweb-web-core</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.hsweb</groupId>
  101. <artifactId>hsweb-web-dao-api</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.hsweb</groupId>
  105. <artifactId>hsweb-web-service-api</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-jdbc</artifactId>
  110. </dependency>
  111. </dependencies>
  112. </project>