pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>backend</artifactId>
  7. <groupId>cn.kdan.pdf.office</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pdf-office-gateway</artifactId>
  12. <description>PDF Office 网关</description>
  13. <properties>
  14. </properties>
  15. <dependencies>
  16. <!-- <dependency>-->
  17. <!-- <groupId>cn.kdan.pdf.office</groupId>-->
  18. <!-- <artifactId>pdf-office-common</artifactId>-->
  19. <!-- <version>0.0.1</version>-->
  20. <!-- <exclusions>-->
  21. <!-- <exclusion>-->
  22. <!-- <groupId>org.springframework.boot</groupId>-->
  23. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  24. <!-- </exclusion>-->
  25. <!-- <exclusion>-->
  26. <!-- <groupId>org.springframework.boot</groupId>-->
  27. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  28. <!-- </exclusion>-->
  29. <!-- </exclusions>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.cloud</groupId>
  37. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  38. </dependency>
  39. <!--网关-->
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-gateway</artifactId>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <finalName>pdf-office-gateway</finalName>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>