eap-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-server</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-server</artifactId> <version>2.7.3</version> <name>${project.artifactId}</name> <description>后端 Server 的主项目,通过引入需要 eap-module-xxx 的依赖, 从而实现提供 RESTful API 给 eap-ui-admin、eap-ui-user 等前端项目。 本质上来说,它就是个空壳(容器)!</description> <url>https://github.com/eaopen/openea-eap</url> <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> <dependencies> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-module-system-rest</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-module-infra-rest</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-protection</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> <version>3.1.1</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>