pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>2.2.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <scope>test</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.h2database</groupId>
  20. <artifactId>h2</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.oracle</groupId>
  30. <artifactId>ojdbc14</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>ch.qos.logback</groupId>
  35. <artifactId>logback-classic</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.hsweb</groupId>
  40. <artifactId>hsweb-web-service-simple</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hsweb</groupId>
  44. <artifactId>hsweb-web-controller</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hsweb</groupId>
  48. <artifactId>hsweb-web-dao-mybatis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.hsweb</groupId>
  52. <artifactId>hsweb-web-oauth2-simple</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.hsweb</groupId>
  56. <artifactId>hsweb-web-websocket</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>