Konsist Snapshots

Occasionally Konsist snapshots are released to snapshots repo.

At some point this process will be automated - new snapshot will be released each time code is merged to develop branch

To use snapshot add snapshot repository and update Konsist version.

Add Snapshot Repository

To use Konsist snapshot, include the snapshot repository in your project:

repositories {
    // Konsist snapshot repository
    maven {
        url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
    }

    // More repositorues
}

Add Konsist Dependency

To use Konsist, include the Konsist dependency from Maven Central:

Add the following dependency to the module\build.gradle.kts file:

dependencies {
    testImplementation("com.lemonappdev:konsist:X.Y.Z-SNAPSHOT")
}

To a

Last updated