/ketex

An idiomatic Kotlin DSL for creating regular expressions.

Primary LanguageKotlinMIT LicenseMIT

Maven metadata URL GitHub Workflow Status Kotlin Gradle GitHub License

Ketex

An idiomatic Kotlin DSL for creating regular expressions.

Take a look at the API docs and the wiki.

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