pom.xml 1.1 KB
Newer Older
H
heyh 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
H
heyh 已提交
2 3 4
<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">
    <modelVersion>4.0.0</modelVersion>
H
heyh 已提交
5

H
heyh 已提交
6 7 8
    <parent>
        <groupId>com.roncoo</groupId>
        <artifactId>roncoo-education-system</artifactId>
F
fengyw 已提交
9
        <version>12.0.0-RELEASE</version>
H
heyh 已提交
10
    </parent>
H
heyh 已提交
11

H
heyh 已提交
12 13
    <artifactId>roncoo-education-system-feign</artifactId>
    <name>roncoo-education-system-feign</name>
H
heyh 已提交
14

H
heyh 已提交
15 16 17
    <dependencies>
        <dependency>
            <groupId>com.roncoo</groupId>
夏天飘过的风's avatar
夏天飘过的风 已提交
18
            <artifactId>roncoo-education-common-core</artifactId>
H
heyh 已提交
19
        </dependency>
F
fengyw 已提交
20 21 22 23
        <dependency>
            <groupId>com.roncoo</groupId>
            <artifactId>roncoo-education-common-video</artifactId>
        </dependency>
H
heyh 已提交
24 25 26 27 28 29

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
    </dependencies>
H
heyh 已提交
30
</project>