pom.xml 4.1 KB

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