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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.raycos</groupId>
  7. <artifactId>raycos</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>raycos_web_api</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <name>raycos-web-api</name>
  13. <packaging>jar</packaging>
  14. <description>raycos-web-api</description>
  15. <properties>
  16. </properties>
  17. <dependencies>
  18. <!--配置feign-->
  19. <!-- <dependency>-->
  20. <!-- <groupId>org.springframework.cloud</groupId>-->
  21. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  22. <!-- </dependency>-->
  23. <!--web起步依赖-->
  24. <dependency>
  25. <groupId>com.raycos</groupId>
  26. <artifactId>raycoscommon</artifactId>
  27. <version>1.0.0-SNAPSHOT</version>
  28. </dependency>
  29. <!-- <dependency>-->
  30. <!-- <groupId>com.baomidou</groupId>-->
  31. <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
  32. <!-- </dependency>-->
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>