pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.sckw</groupId>
  8. <artifactId>sckw-service-platform</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-auth</artifactId>
  12. <version>1.1.0</version>
  13. <description>登录认证中心</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <basic.version>1.0.0</basic.version>
  20. </properties>
  21. <dependencies>
  22. <!-- 核心模块 -->
  23. <dependency>
  24. <groupId>com.sckw</groupId>
  25. <artifactId>sckw-common-startup</artifactId>
  26. <version>${basic.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.sckw</groupId>
  30. <artifactId>sckw-common-core</artifactId>
  31. <version>${basic.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sckw</groupId>
  35. <artifactId>sckw-common-remote</artifactId>
  36. <version>${basic.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sckw</groupId>
  40. <artifactId>sckw-common-redis</artifactId>
  41. <version>${basic.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.sckw</groupId>
  45. <artifactId>sckw-system-api</artifactId>
  46. <version>${basic.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sckw</groupId>
  50. <artifactId>sckw-message-api</artifactId>
  51. <version>${basic.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.sckw</groupId>
  55. <artifactId>sckw-fleet-api</artifactId>
  56. <version>${basic.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springdoc</groupId>
  60. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  61. <version>2.6.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.github.xiaoymin</groupId>
  65. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  66. <version>4.5.0</version>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-maven-plugin</artifactId>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>repackage</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. <configuration>
  82. <excludes>
  83. <exclude>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. </exclude>
  87. </excludes>
  88. <mainClass>com.sckw.auth.AuthApplication</mainClass>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>