1 Star 2 Fork 1

逍遥/yage-hello

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.26 KB
一键复制 编辑 原始数据 按行查看 历史
逍遥 提交于 2022-01-20 19:56 +08:00 . hello-jpa
<?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">
<!-- ================================================================ -->
<!-- parent -->
<!-- ================================================================ -->
<parent>
<groupId>org.yage.hello</groupId>
<artifactId>yage-hello</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
</parent>
<!-- ================================================================ -->
<!-- basic maven info -->
<!-- ================================================================ -->
<modelVersion>4.0.0</modelVersion>
<artifactId>yage-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>yage-demo</name>
<description>Demo project for Spring Boot</description>
<!-- ================================================================ -->
<!-- properties -->
<!-- ================================================================ -->
<properties>
<java.version>1.8</java.version>
</properties>
<!-- ================================================================ -->
<!-- dependencies -->
<!-- ================================================================ -->
<dependencies>
<!-- ******************************** -->
<!-- yage-common -->
<!-- ******************************** -->
<dependency>
<groupId>org.yage.hello</groupId>
<artifactId>yage-common</artifactId>
</dependency>
<!-- ******************************** -->
<!-- zipkin -->
<!-- ******************************** -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zipkin</artifactId>
</dependency>
<!-- ******************************** -->
<!-- lombok -->
<!-- ******************************** -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!-- ******************************** -->
<!-- logstash -->
<!-- ******************************** -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
</dependency>
<!-- ******************************** -->
<!-- nacos -->
<!-- ******************************** -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- ******************************** -->
<!-- db -->
<!-- ******************************** -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
<!-- ================================================================ -->
<!-- build -->
<!-- ================================================================ -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/contraller/yage-hello.git
git@gitee.com:contraller/yage-hello.git
contraller
yage-hello
yage-hello
hello-jpa

搜索帮助