pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.stellvoy</groupId>
  8. <artifactId>gig-auth</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>gig-auth-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.stellvoy</groupId>
  20. <artifactId>gig-api</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <!--Redis-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <!--redisson-->
  41. <dependency>
  42. <groupId>org.redisson</groupId>
  43. <artifactId>redisson</artifactId>
  44. </dependency>
  45. <!--commons-pool2-->
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-pool2</artifactId>
  49. </dependency>
  50. <!--discovery-->
  51. <dependency>
  52. <groupId>com.alibaba.cloud</groupId>
  53. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  54. </dependency>
  55. <!--config-->
  56. <dependency>
  57. <groupId>com.alibaba.cloud</groupId>
  58. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  59. </dependency>
  60. <!--loadbalancer-->
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  64. </dependency>
  65. <!--sdk-->
  66. <dependency>
  67. <groupId>com.stellvoy</groupId>
  68. <artifactId>gig-auth-resource-sdk</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>${project.artifactId}</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>build-info</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. <configuration>
  86. <mainClass>com.stellvoy.auth.AuthApplication</mainClass>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>