Skip to content
Davis edited this page May 2, 2024 · 3 revisions

You can include PassGen in your Kotlin project via JitPack.

Gradle Kotlin DSL

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")
}

Maven

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>

Clone this wiki locally