-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Davis edited this page May 2, 2024
·
3 revisions
You can include PassGen in your Kotlin project via JitPack.
For Gradle Kotlin DSL (build.gradle.kts), add the JitPack repository and dependency as follows:
repositories {
maven(url = "https://jitpack.io")
}
dependencies {
implementation("com.github.offrange:passgen:v0.0.2-beta")
}For Maven, add the JitPack repository and dependency to your pom.xml file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>Then, include the PassGen dependency:
<dependency>
<groupId>com.github.offrange</groupId>
<artifactId>passgen</artifactId>
<version>v0.0.2-beta</version>
</dependency>