pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jishutao.brain</groupId>
  6. <artifactId>core-parent</artifactId>
  7. <version>1.0.1</version>
  8. </parent>
  9. <artifactId>api_gateway</artifactId>
  10. <version>0.0.1</version>
  11. <name>API Gateway</name>
  12. <description>API Gateway</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-gateway</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional>
  22. <scope>runtime</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.jishutao.brain</groupId>
  31. <artifactId>common-library</artifactId>
  32. <version>1.0.1</version>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <!-- jwt -->
  41. <dependency>
  42. <groupId>io.jsonwebtoken</groupId>
  43. <artifactId>jjwt</artifactId>
  44. <version>${jjwt.version}</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <!-- redis -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-data-redis</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>jakarta.xml.bind</groupId>
  54. <artifactId>jakarta.xml.bind-api</artifactId>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>api_gateway</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <executions>
  64. <execution>
  65. <goals>
  66. <goal>repackage</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. <configuration>
  71. <includeSystemScope>true</includeSystemScope>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>