pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>javax.el</groupId>
  36. <artifactId>el-api</artifactId>
  37. <version>2.2</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.webbuilder</groupId>
  42. <artifactId>wb-sql-util</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.hsweb</groupId>
  46. <artifactId>hsweb-web-core</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.hsweb</groupId>
  50. <artifactId>hsweb-web-dao-interface</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.hsweb</groupId>
  54. <artifactId>hsweb-web-service-interface</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-jdbc</artifactId>
  59. </dependency>
  60. </dependencies>
  61. </project>