pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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-framework</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>1.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-service-impl-common</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>javax.el</groupId>
  21. <artifactId>el-api</artifactId>
  22. <version>2.2</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.hsweb</groupId>
  27. <artifactId>hsweb-web-dao-impl-mybatis</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.oracle</groupId>
  37. <artifactId>ojdbc14</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.h2database</groupId>
  42. <artifactId>h2</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid</artifactId>
  53. <version>1.0.25</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.hsweb</groupId>
  58. <artifactId>hsweb-expands-office</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jsoup</groupId>
  62. <artifactId>jsoup</artifactId>
  63. <version>1.8.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.hsweb</groupId>
  67. <artifactId>hsweb-easy-orm</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.codehaus.groovy</groupId>
  71. <artifactId>groovy-all</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.hsweb</groupId>
  75. <artifactId>hsweb-web-concurrent-cache</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.hsweb</groupId>
  79. <artifactId>hsweb-web-concurrent-lock</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.hsweb</groupId>
  83. <artifactId>hsweb-web-core</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.hsweb</groupId>
  87. <artifactId>hsweb-web-dao-interface</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.hsweb</groupId>
  91. <artifactId>hsweb-web-service-interface</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-jdbc</artifactId>
  96. </dependency>
  97. </dependencies>
  98. </project>