pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <zxing.version>3.5.3</zxing.version>
  21. </properties>
  22. <dependencies>
  23. <!-- 核心模块 -->
  24. <dependency>
  25. <groupId>com.sckw</groupId>
  26. <artifactId>sckw-common-startup</artifactId>
  27. <version>${basic.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sckw</groupId>
  31. <artifactId>sckw-common-core</artifactId>
  32. <version>${basic.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.sckw</groupId>
  36. <artifactId>sckw-common-remote</artifactId>
  37. <version>${basic.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sckw</groupId>
  41. <artifactId>sckw-common-stream</artifactId>
  42. <version>${basic.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.sckw</groupId>
  46. <artifactId>sckw-common-redis</artifactId>
  47. <version>${basic.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.sckw</groupId>
  51. <artifactId>sckw-system-api</artifactId>
  52. <version>${basic.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sckw</groupId>
  56. <artifactId>sckw-message-api</artifactId>
  57. <version>${basic.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.sckw</groupId>
  61. <artifactId>sckw-fleet-api</artifactId>
  62. <version>${basic.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.google.zxing</groupId>
  66. <artifactId>javase</artifactId>
  67. <version>${zxing.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.google.zxing</groupId>
  71. <artifactId>core</artifactId>
  72. <version>${zxing.version}</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <executions>
  81. <execution>
  82. <goals>
  83. <goal>repackage</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. <configuration>
  88. <excludes>
  89. <exclude>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. </exclude>
  93. </excludes>
  94. <mainClass>com.sckw.auth.AuthApplication</mainClass>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>