pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>tr-plugins</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tr-spring-boot-starter-plugin-dict</artifactId>
  12. <version>${revision}</version>
  13. <packaging>jar</packaging>
  14. <description>字典插件</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cn.tr</groupId>
  18. <artifactId>tr-framework</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cn.tr</groupId>
  22. <artifactId>tr-spring-boot-starter-plugin-cache</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.tr</groupId>
  26. <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-logging</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.ben-manes.caffeine</groupId>
  41. <artifactId>caffeine</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. </project>