pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-web-concurrent</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-concurrent-lock</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter</artifactId>
  16. <optional>true</optional>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-aop</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.session</groupId>
  24. <artifactId>spring-session-data-redis</artifactId>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.webbuilder</groupId>
  29. <artifactId>wb-sql-util</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.hsweb</groupId>
  33. <artifactId>hsweb-web-core</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>