pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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-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-dao-impl-mybatis</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.oracle</groupId>
  26. <artifactId>ojdbc14</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.h2database</groupId>
  31. <artifactId>h2</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.webbuilder</groupId>
  36. <artifactId>wb-office</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.codehaus.groovy</groupId>
  40. <artifactId>groovy-all</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hsweb</groupId>
  44. <artifactId>hsweb-web-concurrent-cache</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hsweb</groupId>
  48. <artifactId>hsweb-web-concurrent-lock</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.el</groupId>
  52. <artifactId>el-api</artifactId>
  53. <version>2.2</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.webbuilder</groupId>
  58. <artifactId>wb-sql-util</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>