Açıklama Yok

pom.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-api-bom</artifactId>
  8. <packaging>pom</packaging>
  9. <version>${revision}</version>
  10. <description>
  11. ruoyi-api-bom api依赖项
  12. </description>
  13. <properties>
  14. <revision>2.2.0</revision>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <!-- 系统接口 -->
  19. <dependency>
  20. <groupId>org.dromara</groupId>
  21. <artifactId>ruoyi-api-system</artifactId>
  22. <version>${revision}</version>
  23. </dependency>
  24. <!-- 资源服务接口 -->
  25. <dependency>
  26. <groupId>org.dromara</groupId>
  27. <artifactId>ruoyi-api-resource</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <!-- workflow接口 -->
  31. <dependency>
  32. <groupId>org.dromara</groupId>
  33. <artifactId>ruoyi-api-workflow</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. </dependencies>
  37. </dependencyManagement>
  38. </project>