pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>com.oracle</groupId>
  21. <artifactId>ojdbc14</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.h2database</groupId>
  26. <artifactId>h2</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.el</groupId>
  31. <artifactId>el-api</artifactId>
  32. <version>2.2</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.webbuilder</groupId>
  37. <artifactId>wb-sql-util</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hsweb</groupId>
  41. <artifactId>hsweb-web-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.hsweb</groupId>
  45. <artifactId>hsweb-web-dao-interface</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.hsweb</groupId>
  49. <artifactId>hsweb-web-service-interface</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-jdbc</artifactId>
  54. </dependency>
  55. </dependencies>
  56. </project>