pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0"?>
  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. <groupId>org.sky</groupId>
  7. <artifactId>Kd-Cloud</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kd-service</artifactId>
  12. <name>${project.artifactId}</name>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <configuration>
  19. <source>16</source>
  20. <target>16</target>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. <packaging>pom</packaging>
  26. <description> 微服务集合</description>
  27. <modules>
  28. <module>kd-desk</module>
  29. <module>kd-system</module>
  30. <module>kd-scientific</module>
  31. </modules>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.sky</groupId>
  35. <artifactId>kd-common</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.sky</groupId>
  39. <artifactId>kd-starter-metrics</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.sky</groupId>
  43. <artifactId>kd-starter-api-crypto</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.sky</groupId>
  47. <artifactId>kd-dict-api</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.sky</groupId>
  51. <artifactId>kd-scope-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.swagger.core.v3</groupId>
  55. <artifactId>swagger-annotations</artifactId>
  56. </dependency>
  57. <!-- 多租户字段隔离模式 -->
  58. <dependency>
  59. <groupId>org.sky</groupId>
  60. <artifactId>kd-starter-tenant</artifactId>
  61. </dependency>
  62. <!-- 多租户数据库隔离模式则引入此配置 -->
  63. <!--<dependency>
  64. <groupId>org.sky</groupId>
  65. <artifactId>kd-starter-tenant-dynamic</artifactId>
  66. </dependency>-->
  67. <!-- 集成sharding功能则引入此配置 -->
  68. <!--<dependency>
  69. <groupId>org.sky</groupId>
  70. <artifactId>kd-starter-sharding</artifactId>
  71. </dependency>-->
  72. </dependencies>
  73. </project>