Setting up
This page describes how you can add Lamp to your own projects, using Gradle or Maven.
Adding Lamp dependency
<dependencies>
<!-- Required for all platforms -->
<dependency>
<groupId>io.github.revxrsal</groupId>
<artifactId>lamp.common</artifactId>
<version>[VERSION]</version>
</dependency>
<!-- Add your specific platform module here -->
<dependency>
<groupId>io.github.revxrsal</groupId>
<artifactId>lamp.[PLATFORM]</artifactId>
<version>[VERSION]</version>
</dependency>
</dependencies>dependencies {
implementation 'io.github.revxrsal:lamp.common:[VERSION]'
implementation 'io.github.revxrsal:lamp.[PLATFORM]:[VERSION]'
}dependencies {
implementation("io.github.revxrsal:lamp.common:[VERSION]")
implementation("io.github.revxrsal:lamp.[PLATFORM]:[VERSION]")
}Optional: Preserve parameter names
For Kotlin
Last updated
Was this helpful?