pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.0.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. </properties>
  20. <dependencies>
  21. <!-- 核心模块 -->
  22. <dependency>
  23. <groupId>com.sckw</groupId>
  24. <artifactId>sckw-common-startup</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.sckw</groupId>
  28. <artifactId>sckw-common-core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sckw</groupId>
  32. <artifactId>sckw-common-remote</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sckw</groupId>
  40. <artifactId>sckw-system-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.sckw</groupId>
  44. <artifactId>sckw-message-api</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. <executions>
  53. <execution>
  54. <goals>
  55. <goal>repackage</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. <configuration>
  60. <excludes>
  61. <exclude>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. </exclude>
  65. </excludes>
  66. <mainClass>com.sckw.auth.AuthApplication</mainClass>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>