pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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-commons</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0.12-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>hsweb-commons-bean</artifactId>
  13. <description>通用增删改查-通用Bean模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.hswebframework.web</groupId>
  17. <artifactId>hsweb-core</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.hibernate</groupId>
  22. <artifactId>hibernate-validator</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.spockframework</groupId>
  31. <artifactId>spock-core</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.athaydes</groupId>
  36. <artifactId>spock-reports</artifactId>
  37. <version>1.2.13</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.glassfish</groupId>
  42. <artifactId>javax.el</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>