Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 510 Bytes

File metadata and controls

22 lines (17 loc) · 510 Bytes

URLPattern

Java implementation of URLPattern API standard (https://wicg.github.io/urlpattern).

This library requires Java 11 or above.

Include Dependency

// Add it in your root build.gradle at the end of repositories
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
// Add the dependency
dependencies {
    implementation 'org.teacon:urlpattern:1.0.1'
}