pom.xml 2.0 KB

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