pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. <configuration>
  72. <excludes>
  73. <exclude>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. </exclude>
  77. </excludes>
  78. <mainClass>com.sckw.auth.AuthApplication</mainClass>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>