Ketex
An idiomatic Kotlin DSL for creating regular expressions.
For documentation and usage instructions, please take a look at the docs.
Here's the maven-metadata.xml
of this library.
Installation
Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!
WARNING: this library requires you to enable context receivers, a new experminental feature available in Kotlin/JVM since v1.6.20.
Gradle/Kotlin
repositories {
mavenCentral()
}
dependencies {
implementation(group = "com.theonlytails", name = "ketex", version = "VERSION")
}
Gradle/Groovy
repositories {
mavenCentral()
}
dependencies {
implementation fg.deobf("com.theonlytails:ketex:VERSION")
}