Add Konsist Dependency
Add Maven Central Repository
Add mavenCentral repository:
repositories {
mavenCentral()
}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:0.17.3")
}Add the following dependency to the module\build.gradle file:
dependencies {
testImplementation "com.lemonappdev:konsist:0.17.3"
}Add the following dependency to the module\pom.xml file:
<dependency>
<groupId>com.lemonappdev</groupId>
<artifactId>konsist</artifactId>
<version>0.17.3</version>
<scope>test</scope>
</dependency>Last updated