pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <parent>
  6. <artifactId>fs</artifactId>
  7. <groupId>com.fs</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>fs-proxy</artifactId>
  13. <description>
  14. 代理端服务模块
  15. </description>
  16. <dependencies>
  17. <!-- 核心模块-->
  18. <dependency>
  19. <groupId>com.fs</groupId>
  20. <artifactId>fs-framework</artifactId>
  21. </dependency>
  22. <!-- 服务模块-->
  23. <dependency>
  24. <groupId>com.fs</groupId>
  25. <artifactId>fs-service</artifactId>
  26. </dependency>
  27. <!-- Spring Boot Starter Web -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <!-- MyBatis Plus -->
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-boot-starter</artifactId>
  36. <version>3.4.2</version>
  37. </dependency>
  38. <!-- Lombok -->
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. </dependencies>
  45. </project>