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