pom.xml 1003 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>cn.itlym.platform</groupId>
  5. <artifactId>uaa-infrastructure</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>uaa-cache-memory</artifactId>
  10. <description>jvm 内存缓存。
  11. 该缓存实现 在开发/测试模式,会将缓存DTO序列化/反序列化,以便于后续改为使用redis等缓存做铺垫。
  12. </description>
  13. <dependencies>
  14. <!-- 缓存层定义 -->
  15. <dependency>
  16. <groupId>cn.itlym.platform</groupId>
  17. <artifactId>uaa-cache</artifactId>
  18. <version>1.0-SNAPSHOT</version>
  19. </dependency>
  20. <!-- caffine 相关依赖 -->
  21. </dependencies>
  22. </project>