.flattened-pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jt.cloud</groupId>
  6. <artifactId>jt-spring-boot-starter-security</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-security</name>
  9. <description>1. security:用户的认证、权限的校验,实现「谁」可以做「什么事」
  10. 2. operatelog:操作日志,实现「谁」在「什么时间」对「什么」做了「什么事」</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jt.cloud</groupId>
  14. <artifactId>jt-common</artifactId>
  15. <version>2.6.1-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-aop</artifactId>
  21. <version>3.4.5</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.jt.cloud</groupId>
  26. <artifactId>jt-spring-boot-starter-web</artifactId>
  27. <version>2.6.1-SNAPSHOT</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-configuration-processor</artifactId>
  33. <version>3.4.5</version>
  34. <scope>compile</scope>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-security</artifactId>
  40. <version>3.4.5</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.jt.cloud</groupId>
  45. <artifactId>jt-spring-boot-starter-rpc</artifactId>
  46. <version>2.6.1-SNAPSHOT</version>
  47. <scope>compile</scope>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.google.guava</groupId>
  52. <artifactId>guava</artifactId>
  53. <version>33.4.8-jre</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.github.mouzt</groupId>
  58. <artifactId>bizlog-sdk</artifactId>
  59. <version>3.0.6</version>
  60. <scope>compile</scope>
  61. <exclusions>
  62. <exclusion>
  63. <artifactId>spring-boot-starter</artifactId>
  64. <groupId>org.springframework.boot</groupId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. </dependencies>
  69. <repositories>
  70. <repository>
  71. <id>huaweicloud</id>
  72. <name>huawei</name>
  73. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  74. </repository>
  75. <repository>
  76. <id>aliyunmaven</id>
  77. <name>aliyun</name>
  78. <url>https://maven.aliyun.com/repository/public</url>
  79. </repository>
  80. <repository>
  81. <snapshots>
  82. <enabled>false</enabled>
  83. </snapshots>
  84. <id>spring-milestones</id>
  85. <name>Spring Milestones</name>
  86. <url>https://repo.spring.io/milestone</url>
  87. </repository>
  88. <repository>
  89. <releases>
  90. <enabled>false</enabled>
  91. </releases>
  92. <id>spring-snapshots</id>
  93. <name>Spring Snapshots</name>
  94. <url>https://repo.spring.io/snapshot</url>
  95. </repository>
  96. </repositories>
  97. </project>