pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.hswebframework.web</groupId>
  8. <version>3.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-tests</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>javax.servlet</groupId>
  15. <artifactId>javax.servlet-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.el</groupId>
  19. <artifactId>el-api</artifactId>
  20. <version>2.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.h2database</groupId>
  24. <artifactId>h2</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>druid</artifactId>
  29. <version>1.0.26</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.spockframework</groupId>
  33. <artifactId>spock-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.spockframework</groupId>
  37. <artifactId>spock-spring</artifactId>
  38. </dependency>
  39. <!-- https://mvnrepository.com/artifact/com.athaydes/spock-reports -->
  40. <dependency>
  41. <groupId>com.athaydes</groupId>
  42. <artifactId>spock-reports</artifactId>
  43. <version>1.2.13</version>
  44. <!--<scope>test</scope>-->
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hswebframework.web</groupId>
  48. <artifactId>hsweb-spring-boot-starter</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-jdbc</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>