|
@@ -0,0 +1,53 @@
|
|
|
+<?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>com.raycos</groupId>
|
|
|
+ <artifactId>raycos</artifactId>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+
|
|
|
+ <artifactId>raycos_web_api</artifactId>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
+ <name>raycos-web-api</name>
|
|
|
+
|
|
|
+ <packaging>jar</packaging>
|
|
|
+ <description>raycos-web-api</description>
|
|
|
+
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <!--配置feign-->
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>org.springframework.cloud</groupId>-->
|
|
|
+<!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+ <!--web起步依赖-->
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.raycos</groupId>
|
|
|
+ <artifactId>raycoscommon</artifactId>
|
|
|
+ <version>raycos_common-0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>com.baomidou</groupId>-->
|
|
|
+<!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|