mirror of
https://gitee.com/dromara/MilvusPlus.git
synced 2025-12-06 08:58:26 +08:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>io.github.javpower</groupId>
|
|
<artifactId>milvus-plus-parent</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../milvus-plus-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>milvus-plus-boot-starter</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.javpower</groupId>
|
|
<artifactId>milvus-plus-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.dreamlu</groupId>
|
|
<artifactId>mica-auto</artifactId>
|
|
<version>${mica-auto.vaersion}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|
|
|