You can switch branches to view documents in different languages.
by Daybreak312
Smoodi is a Java enterprise-based framework for building web application servers.
It provides the foundational infrastructure needed to run applications, enabling developers to focus solely on business logic.
Smoodi aims to deliver a streamlined and highly productive development environment.
Smoodi is distributed via Maven Central.
Add the Maven Central repository to your repositories block.
Most Java (JVM) projects, including Smoodi, are distributed via Maven Central.
IDE-created projects often include this configuration by default.
To add Smoodi to your project, include the following dependency in your dependencies block.
Replace version with the desired Smoodi version.
Groovy - Gradle (build.gradle)
repositories {
mavenCentral()
}
dependencies {
implementation 'org.smoodi.web:smoodi-web:version'
}Kotlin DSL - Gradle (build.gradle.kts)
repositories {
mavenCentral()
}
dependencies {
implementation("org.smoodi.web:smoodi-web:version")
}