1 Star 0 Fork 0

christin/WeatherApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.30 KB
一键复制 编辑 原始数据 按行查看 历史
christin 提交于 2024-10-15 14:47 . 父模块pom依赖文件
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.8</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>WeatherAppPlus</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>WeatherAppPlus</name>
<description>WeatherAppPlus</description>
<properties>
<java.version>17</java.version>
<spring-cloud.version>2020.0.3</spring-cloud.version>
</properties>
<dependencyManagement>
<!-- 2.锁定springCloud的版本号,要求子工程导入springCloud相关组件的版本一致 -->
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 4.配置远程仓库,springCloud这个技术栈很奇葩,有的包可能在maven仓库中找不到 -->
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<modules>
<module>eureka-server-8100</module>
<module>eureka-sever-8200</module>
<module>commons-interface</module>
<module>getweatherdata</module>
<module>redisdemo</module>
<module>showdata</module>
<module>citydemo</module>
</modules>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/christin-xyt/weather-app.git
git@gitee.com:christin-xyt/weather-app.git
christin-xyt
weather-app
WeatherApp
master

搜索帮助