MVN

io.github.eaopen : eap-server

Maven & Gradle

Jan 26, 2024
32 stars

eap-server · 后端 Server 的主项目,通过引入需要 eap-module-xxx 的依赖, 从而实现提供 RESTful API 给 eap-ui-admin、eap-ui-user 等前端项目。 本质上来说,它就是个空壳(容器)!

<dependency>
    <groupId>io.github.eaopen</groupId>
    <artifactId>eap-server</artifactId>
    <version>2.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.eaopen : eap-server to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.5.0

All Versions

Choose a version of io.github.eaopen : eap-server to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.5.x
eap-server-2.5.0

How to add a dependency to Maven

Add the following io.github.eaopen : eap-server maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.eaopen</groupId>
    <artifactId>eap-server</artifactId>
    <version>2.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.eaopen : eap-server gradle dependency to your build.gradle file:

implementation 'io.github.eaopen:eap-server:2.5.0'

Gradle Kotlin DSL: Add the following io.github.eaopen : eap-server gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.eaopen:eap-server:2.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.eaopen : eap-server sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.eaopen" % "eap-server" % "2.5.0"