pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. </modules>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springblade</groupId>
  21. <artifactId>blade-starter-mybatis</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springblade</groupId>
  25. <artifactId>blade-starter-tenant</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.cloud</groupId>
  29. <artifactId>spring-cloud-starter-openfeign</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springblade</groupId>
  33. <artifactId>blade-core-auto</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <!-- 实体 -->
  37. <dependency>
  38. <groupId>com.fjhx</groupId>
  39. <artifactId>saas-entity</artifactId>
  40. <version>${bladex.project.version}</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. <configuration>
  49. <skip>true</skip>
  50. <finalName>${project.name}</finalName>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>