You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
<parent >
<artifactId > beacon-cloud</artifactId>
<groupId > com.mashibing</groupId>
<version > 1.0-SNAPSHOT</version>
</parent>
<modelVersion > 4.0.0</modelVersion>
<artifactId > beacon-test</artifactId>
<description > 为了快速落地核心业务, 在这个test项目中将MySQL中的数据, 同步到redis缓存, 基于Cache模块去写入</description>
<dependencies >
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-test</artifactId>
</dependency>
<dependency >
<groupId > com.alibaba.cloud</groupId>
<artifactId > spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.cloud</groupId>
<artifactId > spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency >
<groupId > org.mybatis.spring.boot</groupId>
<artifactId > mybatis-spring-boot-starter</artifactId>
<version > 2.2.2</version>
</dependency>
<dependency >
<groupId > mysql</groupId>
<artifactId > mysql-connector-java</artifactId>
<version > 5.1.49</version>
</dependency>
</dependencies>
</project>