1 Star 0 Fork 0

WFSWFS/springCloudAndAlibaba

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.98 KB
一键复制 编辑 原始数据 按行查看 历史
ITQA008 提交于 2024-03-12 16:57 . // 配置中心的简单了解使用
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>springCloudAndAlibaba</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<!--聚合pom 不一定非要在子项目写parent-->
<modules>
<module>springCloud</module>
<module>springCloudAlibaba</module>
</modules>
<properties>
<!-- 覆盖spring-boot-starter-parent 里面的mysql 的8版本 -->
<java.version>1.8</java.version>
<mysql.version>5.1.3</mysql.version>
<ssmplus.version>1.0-SNAPSHOT</ssmplus.version>
</properties>
<!--子项目依赖版本声明-->
<dependencyManagement>
<dependencies>
</dependencies>
</dependencyManagement>
<parent>
<groupId>org.springframework.boot</groupId> <!--ctrl +鼠标左键点击去-->
<artifactId>spring-boot-starter-parent</artifactId>
<!-- <version>2.3.4.RELEASE</version>-->
<version>2.1.9.RELEASE</version>
<!-- 作用是啥,不写这个 feign 就用不了-->
<!-- 优先本地获取仓库 所以feign package 之后, order-service 就能找到了 。。。 不一定对-->
<relativePath/>
</parent>
<!--子项目继承的依赖-->
<dependencies>
<!--内置了很多依赖,有的我们放到这边直接用的时候不需要写 version标签-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!--这里也能写 排除一些依赖 比如tomcat 然后去换成starter-jetty-->
<exclusions>
<!-- <exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>
<exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>-->
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<!--Maven运行clean 、package,把helloworld工程项目的打包成jar包,打包好的jar包被生成在helloworld工程项目的target文件夹内。
用cmd运行java -jar boot-01-helloworld-1.0-SNAPSHOT.jar,既可以运行helloworld工程项目。将jar包直接在目标服务器执行即可。-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- </plugin>-->
<!--不打包exclude 什么 -->
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>-->
</plugins>
<!--资源路径 了解-->
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<!--测试资源路径-->
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
</build>
<!--
https://maven.aliyun.com/repository/public。通过这个配置,Maven在构建项目时会从该仓库中下载所需的依赖项。
其中,releases块中的enabled元素设置为true,表示可以获取已发布的稳定版本。-->
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<!--指定插件下载地址-->
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/WFSWFS_admin/springCloudAndAlibaba.git
git@gitee.com:WFSWFS_admin/springCloudAndAlibaba.git
WFSWFS_admin
springCloudAndAlibaba
springCloudAndAlibaba
master

搜索帮助