pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>org.webbuilder</groupId>
  42. <artifactId>wb-office</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.hsweb</groupId>
  46. <artifactId>hsweb-easy-orm</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.codehaus.groovy</groupId>
  50. <artifactId>groovy-all</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.hsweb</groupId>
  54. <artifactId>hsweb-web-concurrent-cache</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.hsweb</groupId>
  58. <artifactId>hsweb-web-concurrent-lock</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hsweb</groupId>
  62. <artifactId>hsweb-web-core</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.hsweb</groupId>
  66. <artifactId>hsweb-web-dao-interface</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.hsweb</groupId>
  70. <artifactId>hsweb-web-service-interface</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-jdbc</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>