pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>javax.el</groupId>
  16. <artifactId>el-api</artifactId>
  17. <version>2.2</version>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.hsweb</groupId>
  22. <artifactId>hsweb-web-dao-impl-mybatis</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.oracle</groupId>
  32. <artifactId>ojdbc14</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.h2database</groupId>
  37. <artifactId>h2</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid</artifactId>
  43. <version>1.0.5</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hsweb</groupId>
  48. <artifactId>hsweb-expands-office</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.jsoup</groupId>
  52. <artifactId>jsoup</artifactId>
  53. <version>1.8.3</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.hsweb</groupId>
  57. <artifactId>hsweb-easy-orm</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.codehaus.groovy</groupId>
  61. <artifactId>groovy-all</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.hsweb</groupId>
  65. <artifactId>hsweb-web-concurrent-cache</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.hsweb</groupId>
  69. <artifactId>hsweb-web-concurrent-lock</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.hsweb</groupId>
  73. <artifactId>hsweb-web-core</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.hsweb</groupId>
  77. <artifactId>hsweb-web-dao-interface</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.hsweb</groupId>
  81. <artifactId>hsweb-web-service-interface</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-jdbc</artifactId>
  86. </dependency>
  87. </dependencies>
  88. </project>