xmagic-cloud-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>tech.xmagic</groupId> <artifactId>xmagic-cloud-parent</artifactId> <version>1.0.14</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- /********** SpringCloud依赖根项目 **********/ / SpringBoot项目依赖该父项目 / / 包含m2c-cloud-dependencies所有依赖 / / 增加各种cloud依赖 / /***********************************/ --> <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> <groupId>tech.xmagic</groupId> <artifactId>xmagic-boot-starter-parent</artifactId> <version>1.0.14</version> <!-- <version>1.0.14-SNAPSHOT</version>--> <relativePath/> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>xmagic-cloud-parent</artifactId> <!-- <version>1.0.13</version>--> <!-- <version>1.0.13-SNAPSHOT</version>--> <packaging>pom</packaging> <name>XMagic Cloud Parent</name> <description>Parent pom providing dependency and plugin management for applications built with Maven</description> <url>https://gitee.com/xmagictech/xmagic-base</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <name>XMagic</name> <email>wangwei.cq@126.com</email> <organization>XMagic, Inc.</organization> <organizationUrl>https://xmagic.tech</organizationUrl> </developer> </developers> <scm> <url>https://gitee.com/xmagictech/xmagic-base.git</url> </scm> <dependencies> <!--SpringBootDev开发用包--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <!--yml配置文件自动生成元数据提示--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <!--SpringBoot测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!--hutool--> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> </dependency> <!-- slf4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- logback --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </dependency> <!-- logback --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <!-- mapstruct --> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </dependency> <!--lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <!--bootstrap.yml文件的支持--> <!-- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId> </dependency>--> <!--Nacos配置管理--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> <!--Nacos服务发现--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> </dependency> <!--openfeign--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-loadbalancer</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> </project>