eap-cloud-infra-start
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-cloud-infra-start</artifactId> <version>2.7.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.eaopen</groupId> <artifactId>eap-boot-pom</artifactId> <version>2.7.3</version> </parent> <artifactId>eap-cloud-infra-start</artifactId> <version>2.7.3</version> <name>${project.artifactId}</name> <description>infra 模块,主要提供两块能力: 1. 我们放基础设施的运维与管理,支撑上层的通用与核心业务。 例如说:定时任务的管理、服务器的信息等等 2. 研发工具,提升研发效率与质量。 例如说:代码生成器、接口文档等等</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-cloud-dependencies</artifactId> <version>${revision}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-env</artifactId> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-module-infra-rest</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-cloud-starter-rpc-all</artifactId> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-rpc</artifactId> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-monitor</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>