pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>org.webbuilder</groupId>
  31. <artifactId>wb-sql-util</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.hsweb</groupId>
  35. <artifactId>hsweb-web-core</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.hsweb</groupId>
  39. <artifactId>hsweb-web-dao-interface</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.hsweb</groupId>
  43. <artifactId>hsweb-web-service-interface</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-jdbc</artifactId>
  48. </dependency>
  49. </dependencies>
  50. </project>