pom.xml 2.1 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.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-core</artifactId>
  13. <description>核心包</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.javassist</groupId>
  17. <artifactId>javassist</artifactId>
  18. <!--<version>3.22.0-GA</version>-->
  19. </dependency>
  20. <dependency>
  21. <groupId>org.hswebframework</groupId>
  22. <artifactId>hsweb-utils</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-beanutils</groupId>
  34. <artifactId>commons-beanutils</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.hibernate</groupId>
  38. <artifactId>hibernate-validator</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.spockframework</groupId>
  46. <artifactId>spock-core</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.codehaus.groovy</groupId>
  51. <artifactId>groovy-all</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.glassfish</groupId>
  56. <artifactId>javax.el</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. </project>