pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.kxs</groupId>
  8. <artifactId>kxs-common</artifactId>
  9. <version>1.1.0</version>
  10. </parent>
  11. <artifactId>kxs-common-security</artifactId>
  12. <packaging>jar</packaging>
  13. <description>kxs 安全工具类</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <!--工具类核心包-->
  21. <dependency>
  22. <groupId>com.kxs</groupId>
  23. <artifactId>kxs-common-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-extra</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.security</groupId>
  31. <artifactId>spring-security-oauth2-jose</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.security</groupId>
  35. <artifactId>spring-security-oauth2-authorization-server</artifactId>
  36. <version>${spring.authorization.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-webmvc</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.aspectj</groupId>
  44. <artifactId>aspectjweaver</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. </dependency>
  50. <!-- log -->
  51. <dependency>
  52. <groupId>com.kxs</groupId>
  53. <artifactId>kxs-common-log</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.kxs</groupId>
  57. <artifactId>kxs-system-api</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <configuration>
  66. <source>16</source>
  67. <target>16</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>