| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>org.sky</groupId>
- <artifactId>Kd-Cloud</artifactId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>kd-service</artifactId>
- <name>${project.artifactId}</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>16</source>
- <target>16</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <packaging>pom</packaging>
- <description> 微服务集合</description>
- <modules>
- <module>kd-desk</module>
- <module>kd-system</module>
- <module>kd-scientific</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-metrics</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-api-crypto</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-dict-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-scope-api</artifactId>
- </dependency>
- <dependency>
- <groupId>io.swagger.core.v3</groupId>
- <artifactId>swagger-annotations</artifactId>
- </dependency>
- <!-- 多租户字段隔离模式 -->
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-tenant</artifactId>
- </dependency>
- <!-- 多租户数据库隔离模式则引入此配置 -->
- <!--<dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-tenant-dynamic</artifactId>
- </dependency>-->
- <!-- 集成sharding功能则引入此配置 -->
- <!--<dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-sharding</artifactId>
- </dependency>-->
- </dependencies>
- </project>
|