pom.xml 4.4 KB

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