pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.0-RC-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.alibaba</groupId>
  24. <artifactId>druid</artifactId>
  25. <version>1.0.26</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.spockframework</groupId>
  29. <artifactId>spock-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.spockframework</groupId>
  33. <artifactId>spock-spring</artifactId>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/com.athaydes/spock-reports -->
  36. <dependency>
  37. <groupId>com.athaydes</groupId>
  38. <artifactId>spock-reports</artifactId>
  39. <version>1.2.13</version>
  40. <!--<scope>test</scope>-->
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hswebframework.web</groupId>
  44. <artifactId>hsweb-spring-boot-starter</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-jdbc</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. </dependency>
  64. </dependencies>
  65. </project>