pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>hsweb-core</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.javassist</groupId>
  16. <artifactId>javassist</artifactId>
  17. <!--<version>3.22.0-GA</version>-->
  18. </dependency>
  19. <dependency>
  20. <groupId>org.hswebframework</groupId>
  21. <artifactId>hsweb-utils</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-context</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.slf4j</groupId>
  29. <artifactId>slf4j-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-beanutils</groupId>
  33. <artifactId>commons-beanutils</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>fastjson</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>