pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>hx-saas-project</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>2.8.2.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>saas-feign-api</artifactId>
  12. <groupId>com.fjhx</groupId>
  13. <name>${project.artifactId}</name>
  14. <version>2.8.2.RELEASE</version>
  15. <packaging>pom</packaging>
  16. <description>saas 微服务API集合</description>
  17. <modules>
  18. <module>saas-rocketmq-api</module>
  19. </modules>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springblade</groupId>
  23. <artifactId>blade-starter-mybatis</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springblade</groupId>
  27. <artifactId>blade-starter-tenant</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-openfeign</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springblade</groupId>
  35. <artifactId>blade-core-auto</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <!-- 实体 -->
  39. <dependency>
  40. <groupId>com.fjhx</groupId>
  41. <artifactId>saas-entity</artifactId>
  42. <version>${bladex.project.version}</version>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <configuration>
  51. <skip>true</skip>
  52. <finalName>${project.name}</finalName>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>