pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>com.atomikos</groupId>-->
  48. <!--<artifactId>transactions-jdbc</artifactId>-->
  49. <!--</dependency>-->
  50. <!--<dependency>-->
  51. <!--<groupId>com.atomikos</groupId>-->
  52. <!--<artifactId>transactions-jta</artifactId>-->
  53. <!--</dependency>-->
  54. <!--<dependency>-->
  55. <!--<groupId>com.atomikos</groupId>-->
  56. <!--<artifactId>transactions</artifactId>-->
  57. <!--</dependency>-->
  58. <!--<dependency>-->
  59. <!--<groupId>com.atomikos</groupId>-->
  60. <!--<artifactId>transactions-api</artifactId>-->
  61. <!--</dependency>-->
  62. <!--<dependency>-->
  63. <!--<groupId>com.atomikos</groupId>-->
  64. <!--<artifactId>atomikos-util</artifactId>-->
  65. <!--</dependency>-->
  66. <!--<dependency>-->
  67. <!--<groupId>javax.transaction</groupId>-->
  68. <!--<artifactId>jta</artifactId>-->
  69. <!--</dependency>-->
  70. <dependency>
  71. <groupId>org.hsweb</groupId>
  72. <artifactId>hsweb-expands-office</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.jsoup</groupId>
  76. <artifactId>jsoup</artifactId>
  77. <version>1.8.3</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.hsweb</groupId>
  81. <artifactId>hsweb-easy-orm</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.codehaus.groovy</groupId>
  85. <artifactId>groovy-all</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.hsweb</groupId>
  89. <artifactId>hsweb-web-concurrent-cache</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.hsweb</groupId>
  93. <artifactId>hsweb-web-concurrent-lock</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.hsweb</groupId>
  97. <artifactId>hsweb-web-core</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.hsweb</groupId>
  101. <artifactId>hsweb-web-dao-interface</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.hsweb</groupId>
  105. <artifactId>hsweb-web-service-interface</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-jdbc</artifactId>
  110. </dependency>
  111. </dependencies>
  112. </project>